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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    scroll-behavior: smooth;
    min-height: 100vh;
    overflow-y: scroll;
    position: relative;
}

/* Random particles network - from third section to end */
.particles-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    display: none;
}

/* Show particles from third section onwards */
.globe-section ~ * .particles-network,
.globe-section .particles-network {
    display: block;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 15px #ffffff, 0 0 30px rgba(255, 255, 255, 0.5);
    animation: particleFloat 12s ease-in-out infinite;
}

/* Random particle positions from top to bottom */
.particle:nth-child(1) { top: 8%; left: 12%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { top: 23%; left: 78%; animation-delay: 1.2s; animation-duration: 9s; }
.particle:nth-child(3) { top: 15%; left: 45%; animation-delay: 2.1s; animation-duration: 7s; }
.particle:nth-child(4) { top: 35%; left: 25%; animation-delay: 0.8s; animation-duration: 10s; }
.particle:nth-child(5) { top: 42%; left: 65%; animation-delay: 3.2s; animation-duration: 8.5s; }
.particle:nth-child(6) { top: 18%; left: 88%; animation-delay: 1.8s; animation-duration: 9.5s; }
.particle:nth-child(7) { top: 55%; left: 15%; animation-delay: 2.7s; animation-duration: 7.5s; }
.particle:nth-child(8) { top: 67%; left: 72%; animation-delay: 0.5s; animation-duration: 11s; }
.particle:nth-child(9) { top: 31%; left: 52%; animation-delay: 3.8s; animation-duration: 8.8s; }
.particle:nth-child(10) { top: 48%; left: 38%; animation-delay: 1.5s; animation-duration: 9.2s; }
.particle:nth-child(11) { top: 12%; left: 65%; animation-delay: 2.9s; animation-duration: 7.8s; }
.particle:nth-child(12) { top: 78%; left: 42%; animation-delay: 0.3s; animation-duration: 10.5s; }
.particle:nth-child(13) { top: 61%; left: 85%; animation-delay: 3.5s; animation-duration: 8.2s; }
.particle:nth-child(14) { top: 39%; left: 8%; animation-delay: 1.9s; animation-duration: 9.8s; }
.particle:nth-child(15) { top: 84%; left: 28%; animation-delay: 2.4s; animation-duration: 7.2s; }
.particle:nth-child(16) { top: 26%; left: 95%; animation-delay: 0.7s; animation-duration: 11.2s; }
.particle:nth-child(17) { top: 73%; left: 58%; animation-delay: 3.1s; animation-duration: 8.9s; }
.particle:nth-child(18) { top: 52%; left: 5%; animation-delay: 1.3s; animation-duration: 9.6s; }
.particle:nth-child(19) { top: 89%; left: 75%; animation-delay: 2.6s; animation-duration: 7.9s; }
.particle:nth-child(20) { top: 44%; left: 92%; animation-delay: 0.9s; animation-duration: 10.8s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.8);
        opacity: 1;
    }
    75% {
        transform: translateY(-25px) translateX(8px) scale(1.1);
        opacity: 0.9;
    }
}

/* Random network connections */
.network-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 10%,
        #ffffff 50%, 
        rgba(255, 255, 255, 0.4) 90%,
        transparent 100%);
    transform-origin: left center;
    animation: connectionPulse 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Random connection lines with varied angles */
.network-connection:nth-child(21) {
    top: 15%; left: 12%; width: 33%; transform: rotate(127deg);
    animation-delay: 0s;
}
.network-connection:nth-child(22) {
    top: 28%; left: 45%; width: 25%; transform: rotate(-156deg);
    animation-delay: 1.5s;
}
.network-connection:nth-child(23) {
    top: 42%; left: 25%; width: 40%; transform: rotate(89deg);
    animation-delay: 3s;
}
.network-connection:nth-child(24) {
    top: 55%; left: 65%; width: 20%; transform: rotate(-203deg);
    animation-delay: 4.5s;
}
.network-connection:nth-child(25) {
    top: 18%; left: 78%; width: 15%; transform: rotate(174deg);
    animation-delay: 6s;
}
.network-connection:nth-child(26) {
    top: 67%; left: 15%; width: 35%; transform: rotate(-91deg);
    animation-delay: 7.5s;
}
.network-connection:nth-child(27) {
    top: 31%; left: 88%; width: 12%; transform: rotate(142deg);
    animation-delay: 9s;
}
.network-connection:nth-child(28) {
    top: 78%; left: 42%; width: 28%; transform: rotate(-267deg);
    animation-delay: 10.5s;
}
.network-connection:nth-child(29) {
    top: 48%; left: 52%; width: 18%; transform: rotate(301deg);
    animation-delay: 12s;
}
.network-connection:nth-child(30) {
    top: 61%; left: 8%; width: 45%; transform: rotate(-78deg);
    animation-delay: 13.5s;
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.3);
    }
}

/* Debug: Make sure particles are visible */
.particle {
    border: 1px solid #ffffff;
}

/* Ensure content is above particles */
.header,
.word-section,
.globe-section,
.network-power,
.meetups,
.features,
.roadmap,
.expertise,
.community,
.footer {
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 2rem;
    transition: transform 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.2);
}

/* Set initial active state based on HTML lang attribute */
html[lang="en"] #lang-en,
html[lang="en"] #mobile-lang-en {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.2);
}

html[lang="de"] #lang-de,
html[lang="de"] #mobile-lang-de {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.2);
}

.lang-separator {
    color: #666;
    font-size: 0.8rem;
}

.mobile-language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 25px;
    background: transparent;
}

.nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 25px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #2c2c2c;
    border: none;
    border-radius: 0;
    padding: 40px 50px;
    min-width: 900px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: none;
}

/* Mobile dropdown menu */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        width: 100%;
        padding: 1rem;
        background: #1a1a1a;
        border-radius: 8px;
        margin-top: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mega-menu-column {
        margin-bottom: 1rem;
    }
    
    .dropdown-category {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.5rem;
    }
    
    .dropdown-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    .dropdown-icon {
        width: 12px;
        height: 12px;
        margin-right: 8px;
    }
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.dropdown-menu li {
    margin: 0;
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 0 10px 0;
    color: #b8b8b8;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1.3;
    margin: 0;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: #ffffff;
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    margin-right: 12px;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.dropdown-menu a:hover .dropdown-icon {
    opacity: 1;
}

.dropdown-category {
    padding: 0 0 15px;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #404040;
    margin-bottom: 25px;
    position: relative;
}

.dropdown-divider {
    display: none;
}

/* Word Section */
.word-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    padding-top: 80px;
    z-index: 1;
}


/* Globe Section */
.globe-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    position: relative;
    overflow: visible;
    z-index: 1;
    padding: 80px 0;
    scroll-snap-align: start;
}


.globe-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    gap: 4rem;
    z-index: 20; /* Much higher z-index to appear above globe */
    position: relative;
}

.globe-text {
    flex: 1;
    text-align: left;
    max-width: 500px;
    position: relative;
    z-index: 10;
}

.globe-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
}

/* 3D Globe Container */
#globe-container {
    width: 150vw; /* Much wider to prevent horizontal cropping */
    height: 150vh; /* Much taller to prevent vertical cropping */
    position: absolute; /* Absolute positioning to break out of container constraints */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfect centering */
    overflow: visible;
    background: transparent;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    z-index: 1; /* Behind text content */
}

/* Canvas styling for Three.js */
#globe-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    cursor: grab;
}

/* Cursor states for interaction */
#globe-container:active {
    cursor: grabbing;
}

#globe-container:active canvas {
    cursor: grabbing;
}

.globe-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 1 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 15;
}

.globe-subtitle {
    font-size: 1.2rem;
    color: #999999 !important;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 1 !important;
    position: relative;
    z-index: 15;
}

.globe-description {
    font-size: 1rem;
    color: #cccccc !important;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 1 !important;
    position: relative;
    z-index: 15;
}

.globe-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 15;
    justify-content: flex-start;
    align-items: center;
}

.btn-globe {
    padding: 12px 24px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 1 !important;
    position: relative;
    z-index: 20;
}

.btn-globe:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.btn-globe.secondary {
    border-color: #ffffff;
    color: #333333 !important;
    background: #ffffff;
    opacity: 1 !important;
}

.btn-globe.secondary:hover {
    border-color: #ffffff;
    color: #000000 !important;
    background: #f5f5f5;
}

/* Advanced Globe Animation */
.globe-container {
    position: relative;
    width: 500px;
    height: 500px;
    z-index: 2;
    margin: 0 auto;
    /* Enhanced performance optimizations */
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform, opacity;
    transform-style: preserve-3d;
    /* GPU acceleration */
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    /* Additional optimizations */
    contain: layout style paint;
    isolation: isolate;
    /* Allow shadow to extend outside container */
    overflow: visible;
    /* Add padding to accommodate shadow */
    padding: 100px;
    margin: -100px;
}

/* iPad Pro Specific Optimizations */
@media (min-width: 1024px) and (max-width: 1366px) {
    .globe-container {
        padding: 50px;
        margin: -50px auto;
        overflow: visible;
    }
    
    .globe {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 50px 100px rgba(0, 0, 0, 0.3),
            0 75px 150px rgba(0, 0, 0, 0.2);
    }
}

/* iPad Air Specific Optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    .globe-container {
        padding: 35px;
        margin: -35px auto;
        overflow: visible;
    }
    
    .globe {
        box-shadow: 
            0 18px 36px rgba(0, 0, 0, 0.4),
            0 36px 72px rgba(0, 0, 0, 0.3),
            0 54px 108px rgba(0, 0, 0, 0.2);
    }
}

/* iPad Mini Specific Optimizations */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .meetups {
        padding: 80px 0;
        min-height: 100vh;
    }
    
    .meetup-header {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .meetup-process {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .process-step {
        flex-direction: row !important;
        text-align: left !important;
        margin-bottom: 2.5rem !important;
        align-items: flex-start !important;
    }
    
    .step-visual {
        margin-right: 2rem !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
        order: 1 !important;
    }
    
    .step-content {
        padding-top: 0.5rem !important;
        flex: 1 !important;
        text-align: left !important;
        order: 2 !important;
    }
    
    .step-line {
        display: block !important;
    }
    
    .step-title {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
        text-align: left !important;
    }
    
    .step-description {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }
    
    .step-circle {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
}

/* iPad Mini Landscape Optimizations */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .meetups {
        padding: 60px 0;
        min-height: 100vh;
    }
    
    .meetup-header {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .meetup-process {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .process-step {
        flex-direction: row !important;
        text-align: left !important;
        margin-bottom: 2rem !important;
        align-items: flex-start !important;
    }
    
    .step-visual {
        margin-right: 1.5rem !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
        order: 1 !important;
    }
    
    .step-line {
        display: block !important;
    }
    
    .step-content {
        padding-top: 0.5rem !important;
        flex: 1 !important;
        text-align: left !important;
        order: 2 !important;
    }
    
    .step-title {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
        text-align: left !important;
    }
    
    .step-description {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }
    
    .step-circle {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
}

/* Mobile Globe Optimizations */
@media (max-width: 768px) {
    .globe-container {
        width: 300px;
        height: 300px;
        padding: 20px;
        margin: -20px auto;
    }
}

@media (max-width: 480px) {
    .globe-container {
        width: 250px;
        height: 250px;
        padding: 15px;
        margin: -15px auto;
    }
}

@media (max-width: 360px) {
    .globe-container {
        width: 200px;
        height: 200px;
        padding: 10px;
        margin: -10px auto;
    }
}

/* Desktop Globe Scaling - Keep original zooming for desktop */
/* No additional CSS needed - JavaScript handles desktop zooming */

.globe {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        /* 3D Sphere base */
        radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(0, 0, 0, 0.3), transparent 50%),
        /* 3D depth gradients */
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 255, 255, 0.05), transparent 70%),
        /* Subtle 3D lighting */
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    /* Enhanced performance optimizations */
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000px;
    backface-visibility: hidden;
    perspective: 1000px;
    /* Additional optimizations */
    contain: layout style paint;
    isolation: isolate;
    box-shadow: 
        /* 3D depth shadows */
        inset -20px -20px 40px rgba(0, 0, 0, 0.4),
        inset 20px 20px 40px rgba(255, 255, 255, 0.1),
        /* Outer 3D glow and shadow - DEEPER */
        0 0 200px rgba(255, 255, 255, 0.2),
        0 0 400px rgba(255, 255, 255, 0.12),
        0 0 600px rgba(255, 255, 255, 0.06),
        0 50px 100px rgba(0, 0, 0, 0.8),
        0 100px 200px rgba(0, 0, 0, 0.6),
        0 150px 300px rgba(0, 0, 0, 0.4);
}

/* Hide SVG surface - use improved CSS gradients instead */
.globe-surface {
    display: none;
}

.globe-surface svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.globe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Subtle 3D highlight */
        radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.1), transparent 60%);
    border-radius: 50%;
    opacity: 0.8;
    transform: translateZ(10px);
}

.globe::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: 
        /* 3D atmosphere layer */
        radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.08), transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(0, 0, 0, 0.15), transparent 50%);
    border-radius: 50%;
    transform: translateZ(20px);
    animation: atmosphereGlow 6s ease-in-out infinite;
}


.globe-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.globe-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

.globe-dot:nth-child(1) { 
    width: 3px; height: 3px; 
    top: 15%; left: 25%; 
    animation-delay: 0s; 
}
.globe-dot:nth-child(2) { 
    width: 2px; height: 2px; 
    top: 25%; left: 70%; 
    animation-delay: 0.8s; 
}
.globe-dot:nth-child(3) { 
    width: 4px; height: 4px; 
    top: 40%; left: 15%; 
    animation-delay: 1.6s; 
}
.globe-dot:nth-child(4) { 
    width: 2.5px; height: 2.5px; 
    top: 50%; left: 85%; 
    animation-delay: 2.4s; 
}
.globe-dot:nth-child(5) { 
    width: 3px; height: 3px; 
    top: 65%; left: 30%; 
    animation-delay: 3.2s; 
}
.globe-dot:nth-child(6) { 
    width: 2px; height: 2px; 
    top: 75%; left: 75%; 
    animation-delay: 0.4s; 
}
.globe-dot:nth-child(7) { 
    width: 3.5px; height: 3.5px; 
    top: 85%; left: 45%; 
    animation-delay: 1.2s; 
}
.globe-dot:nth-child(8) { 
    width: 1.5px; height: 1.5px; 
    top: 35%; left: 55%; 
    animation-delay: 2.8s; 
}

.globe-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: visible;
}

.network-connection {
    position: absolute;
    height: 0.5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        transparent 100%);
    transform-origin: left center;
    animation: networkFlow 3s ease-in-out infinite;
    background-size: 200% 100%;
    opacity: 0.4;
}

@keyframes networkFlow {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.network-connection:nth-child(1) {
    top: 18%;
    left: 12%;
    width: 22%;
    transform: rotate(73deg);
    animation-delay: 0s;
    animation-duration: 2.5s;
}

.network-connection:nth-child(2) {
    top: 67%;
    left: 78%;
    width: 18%;
    transform: rotate(-127deg);
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.network-connection:nth-child(3) {
    top: 42%;
    left: 35%;
    width: 31%;
    transform: rotate(156deg);
    animation-delay: 1s;
    animation-duration: 2.8s;
}

.network-connection:nth-child(4) {
    top: 81%;
    left: 23%;
    width: 27%;
    transform: rotate(-89deg);
    animation-delay: 1.5s;
    animation-duration: 3.2s;
}

.network-connection:nth-child(5) {
    top: 70%;
    left: 30%;
    width: 30%;
    transform: rotate(30deg);
    animation-delay: 0.2s;
    animation-duration: 2.6s;
}

.network-connection:nth-child(6) {
    top: 25%;
    left: 50%;
    width: 35%;
    transform: rotate(-15deg);
    animation-delay: 1.6s;
    animation-duration: 3.1s;
}

.network-connection:nth-child(7) {
    top: 60%;
    left: 40%;
    width: 25%;
    transform: rotate(60deg);
    animation-delay: 0.6s;
    animation-duration: 2.9s;
}

.network-connection:nth-child(8) {
    top: 40%;
    left: 45%;
    width: 30%;
    transform: rotate(-45deg);
    animation-delay: 1.0s;
    animation-duration: 2.7s;
}

.globe-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    animation: particleNetwork 8s linear infinite;
}

.particle:nth-child(1) { 
    top: 15%; left: 25%; 
    animation-delay: 0s; 
}
.particle:nth-child(2) { 
    top: 25%; left: 70%; 
    animation-delay: 1s; 
}
.particle:nth-child(3) { 
    top: 40%; left: 15%; 
    animation-delay: 2s; 
}
.particle:nth-child(4) { 
    top: 50%; left: 85%; 
    animation-delay: 3s; 
}
.particle:nth-child(5) { 
    top: 65%; left: 30%; 
    animation-delay: 4s; 
}
.particle:nth-child(6) { 
    top: 75%; left: 75%; 
    animation-delay: 5s; 
}
.particle:nth-child(7) { 
    top: 35%; left: 55%; 
    animation-delay: 0.5s; 
}
.particle:nth-child(8) { 
    top: 55%; left: 45%; 
    animation-delay: 1.5s; 
}
.particle:nth-child(9) { 
    top: 30%; left: 40%; 
    animation-delay: 2.5s; 
}
.particle:nth-child(10) { 
    top: 60%; left: 60%; 
    animation-delay: 3.5s; 
}

.network-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: networkPulseRing 3s ease-out infinite;
}

.network-pulse:nth-child(1) { animation-delay: 0s; }
.network-pulse:nth-child(2) { animation-delay: 0.7s; }
.network-pulse:nth-child(3) { animation-delay: 1.4s; }


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

@keyframes innerGlow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes dotPulse {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale3d(1, 1, 1); 
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% { 
        opacity: 1; 
        transform: scale3d(1.8, 1.8, 1); 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

@keyframes networkPulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale3d(0.8, 1, 1);
    }
    50% { 
        opacity: 1; 
        transform: scale3d(1.2, 1, 1);
    }
}

@keyframes particleNetwork {
    0% { 
        opacity: 0.4; 
        transform: scale3d(0.8, 0.8, 1);
    }
    25% { 
        opacity: 1; 
        transform: scale3d(1.2, 1.2, 1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale3d(1, 1, 1);
    }
    75% { 
        opacity: 1; 
        transform: scale3d(1.1, 1.1, 1);
    }
    100% { 
        opacity: 0.4; 
        transform: scale3d(0.8, 0.8, 1);
    }
}

@keyframes networkPulseRing {
    0% { 
        transform: translate3d(-50%, -50%, 0) scale3d(0.5, 0.5, 1);
        opacity: 1;
    }
    100% { 
        transform: translate3d(-50%, -50%, 0) scale3d(3, 3, 1);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0% { 
        top: 100%; 
        opacity: 0; 
        transform: translateX(0) scale(0);
    }
    10% { 
        opacity: 1; 
        transform: translateX(0) scale(1);
    }
    90% { 
        opacity: 1; 
        transform: translateX(20px) scale(1);
    }
    100% { 
        top: 0%; 
        opacity: 0; 
        transform: translateX(40px) scale(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    max-width: 800px;
    z-index: 3;
    position: relative;
}

.word-container {
    position: relative;
    z-index: 2;
}

.word {
    display: inline-block;
    writing-mode: vertical-lr;
    transform-origin: center center;
    font-size: 8rem;
    font-weight: bold;
    transform: rotate(-90deg);
    transition: all 0.5s ease;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.word.horizontal {
    writing-mode: horizontal-tb;
    transform-origin: center center;
    transform: rotate(0deg);
    font-size: 6rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: #999999;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: #aaaaaa;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-primary:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.btn-primary.active {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-primary.active:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-secondary:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.btn-secondary.active {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary.active:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 120px 0 80px 0;
    min-height: 100vh;
    background: #000000;
    position: relative;
    z-index: 10;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure features section content fills the height properly */
.features .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 200px); /* Subtract padding */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .globe-section {
        padding: 60px 1.5rem;
    }
    
    .globe-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .globe-text {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .globe-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .globe-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .globe-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: justify;
    }
    
    .globe-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .globe-section {
        padding: 100px 1rem 40px 1rem;
    }
    
    .features {
        padding: 100px 1rem 40px 1rem;
    }
    
    .expertise {
        padding: 100px 1rem 40px 1rem;
    }
    
    .network-power {
        padding: 100px 1rem 40px 1rem;
    }
    
    .roadmap {
        padding: 100px 1rem 100px 1rem;
    }
    
    .meetups {
        padding: 100px 1rem 40px 1rem;
    }
    
    .community {
        padding: 100px 1rem 40px 1rem;
    }
    
    .globe-text {
        padding: 0 0.5rem;
    }
    
    .globe-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .globe-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .globe-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: justify;
    }
    
    .globe-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn-globe {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .globe-section {
        padding: 90px 0.8rem 30px 0.8rem;
    }
    
    .features {
        padding: 90px 0.8rem 30px 0.8rem;
    }
    
    .expertise {
        padding: 90px 0.8rem 30px 0.8rem;
    }
    
    .network-power {
        padding: 90px 0.8rem 30px 0.8rem;
    }
    
    .roadmap {
        padding: 90px 0.8rem 80px 0.8rem;
    }
    
    .meetups {
        padding: 90px 0.8rem 30px 0.8rem;
    }
    
    .community {
        padding: 90px 0.8rem 30px 0.8rem;
    }
    
    .globe-text {
        padding: 0 0.3rem;
    }
    
    .globe-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
    }
    
    .globe-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .globe-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        text-align: justify;
    }
    
    .globe-buttons {
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }
    
    .btn-globe {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #999999;
    margin-bottom: 3rem;
    margin-top: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    text-align: left;
    padding: 3.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-number {
    width: 40px;
    height: 40px;
    background: transparent;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-number svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
    stroke: currentColor;
}

.feature-card:hover .feature-number {
    background: transparent;
    color: #ffffff;
    transform: scale(1.05);
}

.feature-card:hover .feature-number svg {
    color: #ffffff;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.feature-description {
    color: #b8b8b8;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Expertise Section */
.expertise {
    padding: 120px 0 80px 0;
    min-height: 100vh;
    background: transparent;
    position: relative;
    z-index: 10;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure expertise section content fills the height properly */
.expertise .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 200px); /* Subtract padding */
}

.expertise .section-title {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
}

.expertise .section-subtitle {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
}

.expertise-areas {
    display: flex;
    margin-top: 4rem;
    gap: 1.5rem;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

.expertise-area {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #ffffff;
    padding: 2.5rem 2rem;
    position: relative;
    flex: 1;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.expertise-area:not(:last-child) {
    margin-right: 0;
    z-index: 1;
}

.expertise-area:last-child {
    z-index: 0;
}

.expertise-area::before {
    content: counter(category-counter);
    counter-increment: category-counter;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.expertise-areas {
    counter-reset: category-counter;
}

.expertise-area:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.02);
    z-index: 10;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Individual area backgrounds removed for consistent glassmorphism design */

.expertise-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-area:hover::before {
    opacity: 1;
}

.expertise-area:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.08);
}

.expertise-area-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    text-align: left;
}

.expertise-area-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
    text-align: left;
}

.expertise-area-description li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}

.expertise-area-description li::before {
    content: "•";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.expertise-services {
    margin-top: 1rem;
    text-align: left;
}

.service-item {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 2.2;
    display: block;
    padding-left: 1.2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.service-item::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: bold;
    opacity: 0.8;
}

.service-item:hover {
    color: #ffffff;
    transform: translateX(8px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.expertise-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.expertise-category {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.expertise-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #666666, #ffffff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-category:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
}

.expertise-category:hover::before {
    opacity: 1;
}

.expertise-category h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: left;
    letter-spacing: -0.03em;
    line-height: 1.1;
    position: relative;
}

.expertise-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.expertise-item:hover::before {
    left: 100%;
}

.expertise-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.08);
}

.expertise-item-text {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.expertise-item:hover .expertise-item-text {
    color: #ffffff;
}

/* Network Power Section */
.network-power {
    padding: 100px 0 60px 0;
    min-height: 100vh;
    background: transparent;
    position: relative;
    z-index: 10;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
}

.network-power .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.network-power .storyline-content {
    position: relative;
}

.network-power .section-title,
.network-power .section-subtitle {
    text-align: left;
    margin-bottom: 1rem;
    position: absolute;
    left: 0;
    z-index: 5;
}

.network-power .section-title {
    top: 12rem;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.network-power .section-subtitle {
    top: 15.5rem;
    font-size: 1rem;
    margin-bottom: 0;
    max-width: 450px;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.network-card {
    text-align: center;
    padding: 3.5rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    z-index: 15;
}

.network-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.08);
}

.network-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 1rem;
    opacity: 1 !important;
}

.network-description {
    color: #cccccc !important;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 1 !important;
}

.network-insight {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.network-insight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
}

.network-insight::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 20%, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%
    );
    pointer-events: none;
    animation: glassShimmer 8s ease-in-out infinite;
}

@keyframes glassShimmer {
    0%, 100% { opacity: 0.3; transform: translateX(-100%) translateY(-100%); }
    50% { opacity: 0.6; transform: translateX(0%) translateY(0%); }
}

.network-insight:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-content {
    max-width: 800px;
    margin: 0 auto;
}

.insight-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 2rem;
    opacity: 1 !important;
}

.insight-text {
    font-size: 1.1rem;
    color: #cccccc !important;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 1 !important;
}

.insight-text:last-child {
    margin-bottom: 0;
}

.node-description p {
    font-size: 0.9rem;
    color: #cccccc !important;
    line-height: 1.4;
    margin-bottom: 0;
    opacity: 1 !important;
}

.node-description p:last-child {
    margin-bottom: 0;
}

/* Network Content Grid */
.network-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
    position: relative;
}

/* Visual Connection Line */
.network-content-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 20%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.2) 80%, 
        transparent 100%
    );
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Tree Diagram */
.tree-diagram {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: 2rem;
    position: relative;
    min-height: 300px;
    gap: 1.5rem;
    width: 100%;
}

.tree-node {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tree-node:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.root-node {
    width: 600px;
    padding: 2rem;
    text-align: left;
    flex-shrink: 0;
}

.branch-node {
    width: 450px;
    padding: 2rem;
    text-align: left;
    flex-shrink: 0;
}

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

.root-node .node-title {
    font-size: 1.6rem !important;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.node-description {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
    margin-bottom: 0;
}

.root-node .node-description {
    font-size: 1rem !important;
    line-height: 1.4;
}

.tree-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Main horizontal line from root to center */
.connection-line.main-horizontal {
    top: 80%;
    left: 600px;
    width: 200px;
    height: 4px;
    transform: translateY(-50%);
}

/* Vertical connector in the center */
.connection-line.vertical-connector {
    top: 20%;
    left: 800px;
    width: 4px;
    height: 60%;
}

/* Horizontal lines to each branch */
.connection-line.branch-left {
    top: 20%;
    left: 800px;
    width: 150px;
    height: 4px;
    transform: translateY(-50%);
}

.connection-line.branch-center {
    top: 50%;
    left: 800px;
    width: 150px;
    height: 4px;
    transform: translateY(-50%);
}

.connection-line.branch-right {
    top: 80%;
    left: 800px;
    width: 150px;
    height: 4px;
    transform: translateY(-50%);
}

.tree-branches {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
    gap: 1.2rem;
    flex: 1;
    margin-left: 200px;
}

.tree-branches .branch-node {
    flex: 1;
    margin: 0;
    max-width: 500px;
}

.principle-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: transparent;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.principle-number svg {
    width: 1.2rem;
    height: 1.2rem;
    color: #ffffff;
    stroke: currentColor;
}

.branch-node .principle-title {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.principle-description {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.4;
    margin-bottom: 0;
}

.network-principles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}

.principle-item {
    text-align: left;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Connection Arrow to Principle Items */
.principle-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.3) 100%
    );
    transform: translateY(-50%);
    z-index: 2;
}

.principle-item::after {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(255, 255, 255, 0.6);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: translateY(-50%);
    z-index: 2;
}

/* Remove old ::before rule - replaced with connection arrow */

.principle-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 20%, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%
    );
    pointer-events: none;
    animation: glassShimmer 8s ease-in-out infinite;
}

.principle-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.principle-number {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.principle-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 1.5rem 0;
    opacity: 1 !important;
}

.principle-description {
    color: #cccccc !important;
    line-height: 1.5;
    margin: 0;
    opacity: 1 !important;
    font-size: 0.9rem;
}

/* Meetups Section */
.meetups {
    padding: 140px 0 100px 0;
    min-height: 100vh;
    background: transparent;
    position: relative;
    z-index: 10;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meetup-header {
    text-align: center;
    margin-bottom: 4rem;
}

.meetup-process {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

/* Mobile Meetups Optimizations */
@media (max-width: 1024px) {
    .meetups {
        padding: 60px 0;
        min-height: auto;
    }
    
    .meetup-header {
        margin-bottom: 2.5rem;
    }
    
    .meetup-process {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .step-circle {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Enhanced Section Spacing for Mobile */
@media (max-width: 1024px) {
    .globe-section {
        padding: 80px 0;
        min-height: 100vh;
    }
    
    .features {
        padding: 80px 0;
        min-height: 100vh;
    }
    
    .expertise {
        padding: 80px 0;
        min-height: 100vh;
    }
    
    .network-power {
        padding: 60px 0;
        min-height: 100vh;
    }
    
    .meetups {
        padding: 80px 0;
        min-height: 100vh;
    }
    
    .roadmap {
        padding: 80px 0 200px 0;
        min-height: 100vh;
    }
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 20;
}

.step-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #ffffff, transparent);
    opacity: 0.3;
}

.process-step:last-child .step-line {
    display: none;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 1rem;
    opacity: 1 !important;
}

.step-description {
    font-size: 1rem;
    color: #cccccc !important;
    line-height: 1.6;
    opacity: 1 !important;
}

.participation-cta {
    margin-top: 5rem;
    text-align: center;
}

.cta-text {
    margin-bottom: 3rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 1rem;
    opacity: 1 !important;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #999999 !important;
    opacity: 1 !important;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-option {
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    z-index: 15;
}

.cta-option:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.option-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 1rem;
    opacity: 1 !important;
}

.option-description {
    font-size: 0.95rem;
    color: #cccccc !important;
    line-height: 1.5;
    opacity: 1 !important;
}

/* Stats Section */

/* Community Section */
.community {
    padding: 120px 0 80px 0;
    min-height: 100vh;
    background: #000000;
    text-align: center;
    display: flex;
    scroll-snap-align: start;
    align-items: center;
    justify-content: center;
}

/* Ensure community section content fills the height properly */
.community .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 200px); /* Subtract padding */
}

.community-content {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.community-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.community-description {
    font-size: 1rem;
    color: #999999;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-align: justify;
}

.community-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 15;
    justify-content: center;
    align-items: center;
}

/* Community buttons should use the same styling as globe buttons */
.community-buttons .btn-primary,
.community-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.community-buttons .btn-primary:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.community-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.community-buttons .btn-primary.active {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-primary.active:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.community-buttons .btn-secondary:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.community-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.community-buttons .btn-secondary.active {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary.active:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #222222;
    padding: 2rem 0;
    text-align: center;
    scroll-snap-align: start;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    color: #666666;
    font-size: 0.85rem;
}

/* Privacy and Terms Sections */
.privacy-section,
.terms-section {
    padding: 150px 0 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid #333333;
    min-height: 100vh;
}

.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    color: #cccccc;
    line-height: 1.6;
    padding: 2rem 0;
}

.privacy-content h3,
.terms-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.privacy-content p,
.terms-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-content p:last-child,
.terms-content p:last-child {
    margin-bottom: 0;
}

.privacy-header,
.terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.back-button {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.back-button:hover {
    background: linear-gradient(135deg, #357abd 0%, #2c5f8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.back-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

@media (max-width: 768px) {
    .privacy-header,
    .terms-header {
        flex-direction: column;
        text-align: center;
    }
    
    .back-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Responsive Design */
/* High DPI Quality Enhancement */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .globe {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .globe-container {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* High Zoom Quality Enhancement */
.globe.high-zoom {
    image-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    /* Force smooth rendering for high zoom */
    transform: translateZ(0) scale(var(--globe-scale, 1));
    will-change: transform;
}

/* Smooth scaling for high zoom levels */
.globe-container.high-zoom {
    image-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Ultra smooth rendering for high zoom */
.globe.high-zoom::before,
.globe.high-zoom::after {
    image-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Force smooth rendering on all child elements during high zoom */
.globe.high-zoom * {
    image-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* SVG surface optimization for high zoom */
.globe-surface {
    display: none; /* Hidden by default, shown only at high zoom */
}

.globe.high-zoom .globe-surface {
    display: block !important;
    image-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Ultra smooth SVG surface rendering for high zoom */
.globe.high-zoom .globe-surface {
    image-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    /* Force smooth rendering for ultra high resolution */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Force 60fps rendering */
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.globe.high-zoom .globe-surface svg {
    image-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    /* Ultra smooth SVG rendering */
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
    /* Force hardware acceleration */
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

/* Force maximum frame rate for all globe elements */
.globe, .globe-container, .globe-surface {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: auto;
}

/* Ultra smooth rendering for high zoom */
.globe.high-zoom {
    /* Force maximum smoothness */
    image-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    /* Additional smooth rendering */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -o-backface-visibility: hidden;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .globe-content {
        gap: 2rem;
    }
    
    
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    
    .roadmap-title {
        font-size: 2rem;
    }
    
    .roadmap-description {
        font-size: 1.1rem;
    }
}

/* iPad Specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .word {
        font-size: 6rem;
    }
    
    .word.horizontal {
        font-size: 5rem;
    }
    
    .globe-content {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
        padding: 2rem;
    }
    
    .globe-text {
        max-width: 100%;
        text-align: center;
    }
    
    .globe-title {
        font-size: 3.5rem;
        line-height: 1.1;
        color: #ffffff !important;
    }
    
    .globe-subtitle {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    
    .roadmap-title {
        font-size: 1.8rem;
    }
    
    .roadmap-description {
        font-size: 1.1rem;
    }
    
    .roadmap-content {
        padding: 36px;
        max-width: 400px;
    }
    
    .globe-description {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 2.5rem;
    }
    
    
    .globe-buttons {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .btn-globe {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .word {
        font-size: 5.5rem;
    }
    
    .word.horizontal {
        font-size: 4.5rem;
    }
    
    .globe-content {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
        padding: 1rem;
    }
    
    .globe-text {
        max-width: 50%;
        text-align: left;
    }
    
    
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #2c2c2c;
        margin-top: 0;
        border-radius: 0;
        min-width: auto;
        padding: 30px 25px;
        box-shadow: none;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dropdown-menu a {
        padding: 14px 0 12px 0;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .dropdown-category {
        font-size: 13px;
        padding: 0 0 15px;
        margin-bottom: 20px;
    }
    
    .globe-section {
        padding: 60px 0;
    }
    
    .globe-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .globe-text {
        max-width: 100%;
        text-align: center;
    }
    
    .globe-title {
        font-size: 2.5rem;
        color: #ffffff !important;
    }
    
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
}

@media (max-width: 768px) {
    .meetup-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .join-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .meetup-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .meetup-stats .stat-item {
        padding: 1rem;
    }
    
    
    .header {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .word {
        font-size: 5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .feature-card {
        padding: 1.5rem 1.2rem;
    }
    
    .feature-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-number svg {
        width: 1.2rem;
        height: 1.2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .expertise {
        padding: 60px 0;
    }
    
    .community {
        padding: 60px 0;
    }
    
    
}

@media (max-width: 480px) {
    .header {
        padding: 0.8rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .word {
        font-size: 4rem;
    }
    
    .word.horizontal {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
    }
    
    
    
    .btn-globe {
        width: 180px;
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .feature-card {
        padding: 1.2rem 1rem;
    }
    
    .expertise {
        padding: 40px 0;
    }
    
    .community {
        padding: 40px 0;
    }
    
    
    
    .feature-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-number svg {
        width: 1rem;
        height: 1rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
    
    .expertise-content {
        gap: 3rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expertise-category {
        padding: 2rem;
    }
    
    .expertise-category h3 {
        font-size: 2rem;
    }
    
    
    
    
    .community-title {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* iPad Pro */
@media (min-width: 1024px) and (max-width: 1366px) {
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    
    .roadmap-content {
        max-width: 500px;
    }
}

@media (max-width: 360px) {
    .word {
        font-size: 3.5rem;
    }
    
    .word.horizontal {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .expertise-area {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .expertise-area-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .expertise-area-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    
    .roadmap-title {
        font-size: 1.2rem;
    }
    
    .roadmap-description {
        font-size: 0.8rem;
    }
    
    .roadmap-content {
        padding: 20px;
        max-width: 280px;
    }
}

/* Optimized Parallax Elements */
.parallax-element {
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    contain: layout style paint;
}

/* Optimized Floating Elements */
.floating {
    animation: float 6s ease-in-out infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

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

/* Enhanced Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .features-grid {
        max-width: 1400px;
    }
}

/* iPad Landscape Optimization */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .hero-title {
        font-size: 3rem;
    }
    
    .word {
        font-size: 5.5rem;
    }
    
    .word.horizontal {
        font-size: 4rem;
    }
    
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .expertise-areas {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) and (orientation: landscape) {
    .hero-title {
        font-size: 2rem;
    }
    
    .word {
        font-size: 3rem;
    }
    
    .word.horizontal {
        font-size: 2.5rem;
    }
    
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .expertise-areas {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Journey Section - Mobile Optimizations */
@media (max-width: 1024px) {
    .roadmap {
        padding: 60px 0 150px 0;
    }
    
    .roadmap-timeline {
        max-width: 95%;
    }
    
    .roadmap-item {
        margin: 80px 0;
    }
    
    .roadmap-content {
        padding: 25px;
        max-width: 400px;
    }
    
    .roadmap-title {
        font-size: 1.8rem;
    }
    
    .roadmap-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .roadmap {
        padding: 100px 1rem 100px 1rem;
    }
    
    /* Fix for roadmap title and subtitle positioning on mobile */
    .roadmap-container .section-title,
    #roadmap .section-title,
    #roadmap-partners .section-title {
        position: relative;
        z-index: 1;
        margin-bottom: 1rem;
        margin-top: 0;
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .roadmap-container .section-subtitle,
    #roadmap .section-subtitle,
    #roadmap-partners .section-subtitle {
        position: relative;
        z-index: 1;
        margin-top: 0;
        margin-bottom: 2rem;
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .roadmap-item {
        margin: 50px 0;
    }
    
    .roadmap-content {
        padding: 16px;
        max-width: calc(100% - 45px);
        margin-left: 45px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .roadmap-timeline {
        padding: 0 1rem 80px 1rem;
    }
    
    .roadmap-item:nth-child(odd) .roadmap-content,
    .roadmap-item:nth-child(even) .roadmap-content {
        margin-left: 45px !important;
        margin-right: 0;
        text-align: left;
    }
    
    
    .roadmap-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .roadmap-phase {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    /* Roadmap Swiper Styles for Mobile */
    .roadmap-swiper-wrapper {
        scroll-behavior: smooth;
        position: relative;
    }
    
    .roadmap-swiper-slide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
    }
    
    .roadmap-swiper-slide .roadmap-item {
        margin: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .roadmap-swiper-slide .roadmap-content {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin: 0;
    }
    
    .roadmap-swiper-slide .roadmap-phase {
        text-align: center;
        margin-bottom: 0.75rem;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .roadmap-swiper-slide .roadmap-title {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .roadmap-swiper-slide .roadmap-description {
        text-align: center;
        font-size: 0.9rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .roadmap-swiper-dots {
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        gap: 0.4rem !important;
        margin-top: 1.5rem !important;
    }
    
    .roadmap-swiper-dot {
        width: 2px !important;
        height: 2px !important;
        min-width: 2px !important;
        min-height: 2px !important;
        max-width: 2px !important;
        max-height: 2px !important;
        border-radius: 50% !important;
        transition: background 0.3s ease !important;
        padding: 4px !important;
        margin: 0 !important;
        box-sizing: content-box !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        background: rgba(255, 255, 255, 0.3) !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        font-size: 0 !important;
        line-height: 0 !important;
        overflow: hidden !important;
    }
    
    .roadmap-swiper-dot:active {
        transform: scale(0.9);
    }
    
    .roadmap-swiper-dot:focus {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }
}

@media (max-width: 480px) {
    .roadmap {
        padding: 90px 1rem 80px 1rem;
    }
    
    /* Fix for roadmap title and subtitle positioning on mobile */
    .roadmap-container .section-title,
    #roadmap .section-title,
    #roadmap-partners .section-title {
        position: relative;
        z-index: 1;
        margin-bottom: 0.8rem;
        margin-top: 0;
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .roadmap-container .section-subtitle,
    #roadmap .section-subtitle,
    #roadmap-partners .section-subtitle {
        position: relative;
        z-index: 1;
        margin-top: 0;
        margin-bottom: 1.5rem;
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .roadmap-item {
        margin: 30px 0;
    }
    
    .roadmap-content {
        padding: 14px;
        max-width: calc(100% - 35px);
        margin-left: 35px !important;
        margin-right: 0 !important;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .roadmap-item:nth-child(odd) .roadmap-content,
    .roadmap-item:nth-child(even) .roadmap-content {
        margin-left: 35px !important;
    }
    
    
    .roadmap-description {
        font-size: 0.75rem;
        line-height: 1.25;
    }
    
    .roadmap-phase {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
}

@media (max-width: 360px) {
    .roadmap {
        padding: 30px 0.8rem 60px 0.8rem;
    }
    
    .roadmap-item {
        margin: 25px 0;
    }
    
    .roadmap-content {
        padding: 12px;
        max-width: calc(100% - 35px);
        margin-left: 35px !important;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .roadmap-item:nth-child(odd) .roadmap-content,
    .roadmap-item:nth-child(even) .roadmap-content {
        margin-left: 35px !important;
    }
    
    
    .roadmap-description {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .roadmap-phase {
        font-size: 0.65rem;
        margin-bottom: 3px;
    }
}

@media (max-width: 320px) {
    .roadmap-description {
        font-size: 0.65rem;
        line-height: 1.15;
    }
    
    .roadmap-phase {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    
    .roadmap-content {
        padding: 10px;
        max-width: calc(100% - 30px);
        margin-left: 30px !important;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .roadmap-item:nth-child(odd) .roadmap-content,
    .roadmap-item:nth-child(even) .roadmap-content {
        margin-left: 30px !important;
    }
    
    .container {
        padding: 0 0.6rem;
    }
    
    .globe-section {
        padding: 15px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
    }
    
    .meetups {
        padding: 30px 0;
        min-height: 100vh;
    }
    
    .meetup-header {
        margin-bottom: 1rem;
    }
    
    .meetup-process {
        padding: 0 0.1rem;
    }
    
    .process-step {
        margin-bottom: 0.8rem;
    }
    
    .step-title {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .step-description {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .step-circle {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    /* Enhanced Section Spacing for Ultra Small Mobile */
    .globe-section {
        padding: 30px 0;
        min-height: 100vh;
    }
    
    .features {
        padding: 30px 0;
        min-height: 100vh;
    }
    
    .expertise {
        padding: 30px 0;
        min-height: 100vh;
    }
    
    .network-power {
        padding: 30px 0;
        min-height: 100vh;
    }
    
    .roadmap {
        padding: 30px 0 80px 0;
        min-height: 100vh;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .expertise-area:hover,
    .roadmap-content:hover {
        transform: none;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-globe {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }
    
    .dropdown-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .nav-links a {
        padding: 12px 16px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .globe {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Ensure globe title always stays white */
.globe-title {
    color: #ffffff !important;
    opacity: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Network Power Responsive */
@media (max-width: 1200px) {
    .tree-diagram {
        gap: 2rem;
    }
    
    .root-node {
        width: 500px;
        padding: 1.8rem;
    }
    
    .tree-branches {
        margin-left: 180px;
    }
    
    .connection-line.main-horizontal {
        left: 500px;
        width: 180px;
    }
    
    .connection-line.vertical-connector {
        left: 680px;
    }
    
    .connection-line.branch-left,
    .connection-line.branch-center,
    .connection-line.branch-right {
        left: 680px;
        width: 120px;
    }
}

@media (max-width: 1024px) {
    .network-power .section-title,
    .network-power .section-subtitle {
        position: static !important;
        text-align: center;
        top: auto !important;
        left: auto !important;
    }
    
    .network-power .section-title {
        margin-bottom: 1rem;
        margin-top: 0;
        line-height: 1.3;
    }
    
    .network-power .section-subtitle {
        margin-bottom: 2rem;
        margin-top: 0;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .tree-diagram {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .root-node {
        width: 100%;
        max-width: 500px;
        padding: 2rem;
        margin-bottom: 0;
    }
    
    .tree-branches {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
        max-width: 500px;
        margin-left: 0;
    }
    
    .tree-branches .branch-node {
        width: 100%;
        max-width: 600px;
        margin: 0;
    }
    
    .tree-connections {
        display: none;
    }
}

@media (max-width: 768px) {
    .network-power {
        padding: 100px 1rem 30px 1rem;
    }
    
    .network-power .section-title,
    .network-power .section-subtitle {
        position: static !important;
        text-align: center;
        top: auto !important;
        left: auto !important;
    }
    
    .network-power .section-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1rem;
        margin-top: 0;
        line-height: 1.3;
    }
    
    .network-power .section-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
        margin-top: 0;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .network-insight {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .insight-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        color: #ffffff;
    }
    
    .insight-text {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #cccccc;
        margin-bottom: 0.8rem;
    }
    
    .tree-diagram {
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
        min-height: auto;
        gap: 1.5rem;
    }
    
    .root-node {
        width: 100%;
        max-width: 350px;
        padding: 2rem;
        margin-bottom: 0;
    }
    
    .tree-branches {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        max-width: 350px;
        margin-left: 0;
    }
    
    .tree-branches .branch-node {
        width: 100%;
        max-width: 400px;
        margin: 0;
    }
    
    .tree-connections {
        display: none;
    }
    
    .root-node .node-title {
        font-size: 1.5rem !important;
    }
    
    .branch-node .principle-title {
        font-size: 1.1rem !important;
    }
    
    .principle-description {
        font-size: 0.8rem;
    }
    
    .root-node .node-description {
        font-size: 0.9rem !important;
    }
    
    .principle-item::before,
    .principle-item::after {
        display: none;
    }
    
    .principle-item {
        padding: 1.2rem;
        text-align: center;
    }
    
    .principle-item {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        padding: 1rem;
        text-align: left;
    }
    
    .principle-title {
        font-size: 1rem;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    
    .principle-description {
        font-size: 0.8rem;
        color: #cccccc;
        line-height: 1.4;
    }
}

/* Meetups Responsive */
@media (max-width: 768px) {
    .meetups {
        padding: 40px 1rem;
    }
    
    .meetup-header {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .meetup-header .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .meetup-process {
        padding: 0;
    }
    
    .process-step {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 1.2rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .step-visual {
        flex-shrink: 0;
        margin: 0;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: 600;
        color: #ffffff;
    }
    
    .step-line {
        display: none;
    }
    
    .step-content {
        flex: 1;
        padding: 0;
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        color: #ffffff;
    }
    
    .step-description {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #cccccc;
    }
    
    /* Enhanced Section Spacing for Mobile */
    .globe-section {
        padding: 60px 1.5rem;
        min-height: 100vh;
    }
    
    .features {
        padding: 80px 1.5rem 60px 1.5rem;
        min-height: 100vh;
    }
    
    .expertise {
        padding: 60px 1.5rem;
        min-height: 100vh;
    }
    
    .network-power {
        padding: 80px 1.5rem 60px 1.5rem;
        min-height: 100vh;
    }
    
    .roadmap {
        padding: 60px 1.5rem 150px 1.5rem;
        min-height: 100vh;
    }
    
    .meetups {
        padding: 60px 1.5rem;
    }
    
    .community {
        padding: 60px 1.5rem;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-option {
        padding: 1.5rem;
    }
}


@keyframes atmosphereGlow {
    0%, 100% { 
        opacity: 0.6;
        transform: translateZ(20px) scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: translateZ(25px) scale(1.05);
    }
}

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

/* Roadmap Section */
.roadmap {
    padding: 80px 0 300px 0;
    min-height: 100vh;
    background: #000000;
    position: relative;
    overflow: visible;
    scroll-snap-align: start;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.roadmap-container {
    position: relative;
    z-index: 2;
}

.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-bottom: 100px;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    height: calc(100% + 500px);
    width: 2px;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 1;
}

/* Ultra-wide desktop timeline adjustments */
@media (min-width: 1400px) {
    .roadmap-line {
        height: calc(100% + 600px);
    }
}

/* Tablet timeline adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .roadmap-line {
        left: 50%;
        height: calc(100% + 450px);
        transform: translateX(-50%);
    }
}

/* Large mobile timeline adjustments */
@media (min-width: 481px) and (max-width: 768px) {
    .roadmap-line {
        left: 20px;
        height: calc(100% + 380px);
        transform: none;
    }
    
    .roadmap-dot {
        left: 20px;
        transform: translateX(-50%);
    }
}

/* Mobile timeline adjustments */
@media (max-width: 480px) {
    .roadmap-line {
        left: 18px;
        height: calc(100% + 400px);
        transform: none;
    }
    
    .roadmap-dot {
        left: 18px;
        transform: translateX(-50%);
    }
}

/* Small mobile timeline adjustments */
@media (max-width: 360px) {
    .roadmap-line {
        left: 10px;
        height: calc(100% + 350px);
    }
    
    .roadmap-dot {
        left: 10px;
    }
}


.roadmap-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        #ffffff 0px,
        #ffffff 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateX(-50%);
    z-index: 2;
    clip-path: inset(0 0 calc(100% - var(--timeline-height, 0%)) 0);
    transition: clip-path 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.roadmap-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    transform: translateX(-50%);
    z-index: 1;
    animation: lineGlow 3s ease-in-out infinite;
}

.roadmap-item {
    position: relative;
    margin: 200px 0;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.roadmap-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-content {
    background: #000000;
    border: 1px solid #ffffff;
    border-radius: 0px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(60px);
    max-width: 480px;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
}

.roadmap-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 100%
    );
    z-index: 1;
    animation: shimmer 6s ease-in-out infinite;
    pointer-events: none;
}

.roadmap-item.visible .roadmap-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.roadmap-item:nth-child(odd) .roadmap-content {
    margin-left: 55%;
    text-align: left;
}

.roadmap-item:nth-child(even) .roadmap-content {
    margin-right: 55%;
    text-align: right;
}

.roadmap-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    background: #111111;
}

.roadmap-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.roadmap-item:nth-child(odd) .roadmap-content::before {
    left: -30px;
    border-right-color: #ffffff;
}

.roadmap-item:nth-child(even) .roadmap-content::before {
    right: -30px;
    border-left-color: #ffffff;
}

.roadmap-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.roadmap-item:nth-child(odd) .roadmap-content::before {
    right: -30px;
    border-left-color: #111111;
}

.roadmap-item:nth-child(even) .roadmap-content::before {
    left: -30px;
    border-right-color: #111111;
}

/* Hide arrows on mobile for centered layout */
@media (max-width: 768px) {
    .roadmap-content::before {
        display: none;
    }
    
    /* On mobile, make all roadmap items visible immediately to prevent empty sections */
    .roadmap-item {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .roadmap-item .roadmap-content {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition-delay: 0s !important;
    }
    
    .roadmap-item .roadmap-dot {
        opacity: 1 !important;
        scale: 1 !important;
    }
}

.roadmap-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    box-shadow: 0 0 0 4px #000000, 0 4px 12px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    scale: 0;
}

.roadmap-item.visible .roadmap-dot {
    opacity: 1;
    scale: 1;
    animation: pulse 2s infinite;
}

.roadmap-phase {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.roadmap-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Mobile roadmap titles - override default */
@media (max-width: 768px) {
    .roadmap-title {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
        padding-bottom: 5px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 480px) {
    .roadmap-title {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
        padding-bottom: 4px !important;
    }
}

@media (max-width: 360px) {
    .roadmap-title {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
        padding-bottom: 3px !important;
    }
}

@media (max-width: 320px) {
    .roadmap-title {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
        padding-bottom: 2px !important;
    }
}

.roadmap-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 400;
    font-size: 0.95rem;
}

.roadmap-item:hover .roadmap-content {
    transform: translateY(-10px);
    border-color: #ffffff;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.roadmap-item:hover .roadmap-dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scaleY(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scaleY(1.1);
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Mobile First Base Styles */
.container {
    padding: 0 1rem;
}

.section-title {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.section-subtitle {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    margin-top: 0;
}

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .container {
        padding: 0 1.2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}

/* Mobile Landscape (480px+) */
@media (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
}

/* Tablet Portrait (768px+) */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* iPad Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .container {
        padding: 0 2rem;
    }
    
    .header {
        padding: 1.5rem 2rem;
    }
    
    .word {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .expertise-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Roadmap optimizations for iPad Portrait */
    .roadmap-container {
        padding: 2rem 1rem;
    }
    
    .roadmap-timeline {
        margin: 2rem 0;
    }
    
    .roadmap-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .roadmap-title {
        font-size: 1.1rem;
    }
    
    .roadmap-description {
        font-size: 0.85rem;
    }
}

/* iPad Landscape (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .container {
        padding: 0 2rem;
    }
    
    .header {
        padding: 1.5rem 2rem;
    }
    
    .word {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .expertise-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Roadmap optimizations for iPad Landscape */
    .roadmap-container {
        padding: 2rem 1rem;
    }
    
    .roadmap-timeline {
        margin: 2rem 0;
    }
    
    .roadmap-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .roadmap-title {
        font-size: 1.2rem;
    }
    
    .roadmap-description {
        font-size: 0.9rem;
    }
    
    /* Community section optimization */
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .community-card {
        padding: 1.5rem;
    }
}

/* Laptop (1024px - 1200px) */
@media (min-width: 1024px) and (max-width: 1200px) {
    .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .word {
        font-size: 2.8rem;
    }
    
    
    .globe-title {
        font-size: 1.5rem;
    }
    
    .globe-description {
        font-size: 0.85rem;
    }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* ========================================
   COMPONENT-SPECIFIC RESPONSIVE STYLES
   ======================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

/* Force show hamburger on mobile screens */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10001 !important;
    }
}

/* Additional mobile visibility */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
}

/* iPad specific hamburger menu visibility */
@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10001 !important;
    }
    
    .nav-links {
        display: none !important;
    }
}

/* iPad Portrait specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-links {
        display: none !important;
    }
}

/* iPad Landscape specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-links {
        display: none !important;
    }
}

.hamburger-line {
    width: 2rem;
    height: 0.25rem;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:first-child {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    display: none;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 9999;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    display: none;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #cccccc;
}

.mobile-dropdown {
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.mobile-dropdown a {
    font-size: 0.9rem;
    color: #cccccc;
    border-bottom: 1px solid #444;
}

/* Header Responsive */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.8rem 1rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Enhanced mobile typography */
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        margin-top: 0;
    }
    
    /* Better mobile spacing */
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    /* Mobile card optimizations */
    .feature-card,
    .expertise-card,
    .roadmap-item,
    .community-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-title,
    .expertise-title,
    .roadmap-title {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .feature-description,
    .expertise-description,
    .roadmap-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Word Section Responsive */
@media (max-width: 768px) {
    .word {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .word {
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    .word {
        font-size: 1.3rem;
    }
    
    /* Ultra-small mobile optimizations */
    .container {
        padding: 0 0.8rem;
    }
    
    .header {
        padding: 0.6rem 0.8rem;
    }
    
    .section {
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 1.2rem;
        line-height: 1.1;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .feature-card,
    .expertise-card,
    .roadmap-item,
    .community-card {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-title,
    .expertise-title,
    .roadmap-title {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .feature-description,
    .expertise-description,
    .roadmap-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    
    .globe-title {
        font-size: 0.9rem;
    }
    
    .globe-description {
        font-size: 0.6rem;
    }
}

/* ========================================
   GLOBE SECTION RESPONSIVE DESIGN
   ======================================== */


/* Mobile Portrait (≤768px) */
@media (max-width: 768px) {
    .globe-section {
        padding: 2rem 2rem;
        min-height: auto;
        display: flex !important;
        visibility: visible !important;
        overflow: visible !important;
    }
    
    .globe-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        display: flex !important;
        visibility: visible !important;
        overflow: visible !important;
    }
    
    .globe-text {
        max-width: 100%;
        text-align: center;
        order: 2;
        display: block !important;
        visibility: visible !important;
    }
    
    .globe-visual {
        order: 1;
        margin-bottom: 1rem;
        display: flex !important;
        justify-content: center;
        align-items: center;
        visibility: visible !important;
        overflow: visible !important;
    }
    
    .globe-container {
        width: 450px;
        height: 450px;
        margin: 0 auto !important;
        padding: 40px !important;
        margin: -40px auto !important;
        display: block !important;
        visibility: visible !important;
        overflow: visible !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        /* Ensure transform can be applied by JavaScript */
        transform: translate3d(0, 0, 0);
        will-change: transform;
    }
    
    .globe {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: 100% !important;
        overflow: visible !important;
        background: 
            /* 3D Sphere base */
            radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
            radial-gradient(ellipse at 70% 70%, rgba(0, 0, 0, 0.3), transparent 50%),
            /* 3D depth gradients */
            radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 255, 255, 0.05), transparent 70%),
            /* Subtle 3D lighting */
            linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%) !important;
        border: none !important;
        box-shadow: 
            /* 3D depth shadows - mobile optimized */
            0 10px 20px rgba(0, 0, 0, 0.4),
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 30px 60px rgba(0, 0, 0, 0.2) !important;
        border-radius: 50% !important;
    }
    
    .globe-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .globe-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .globe-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: justify;
    }
    
    .globe-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .btn-globe {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 200px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .globe-section {
        padding: 1.5rem 1.5rem;
        display: flex !important;
        visibility: visible !important;
        overflow: visible !important;
    }
    
    .globe-content {
        gap: 1.5rem;
        padding: 0 0.8rem;
        display: flex !important;
        visibility: visible !important;
        overflow: visible !important;
    }
    
    .globe-container {
        width: 380px;
        height: 380px;
        margin: 0 auto !important;
        padding: 35px !important;
        margin: -35px auto !important;
        display: block !important;
        visibility: visible !important;
        overflow: visible !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        /* Ensure transform can be applied by JavaScript */
        transform: translate3d(0, 0, 0);
        will-change: transform;
    }
    
    .globe {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: 100% !important;
        overflow: visible !important;
        background: 
            /* 3D Sphere base */
            radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
            radial-gradient(ellipse at 70% 70%, rgba(0, 0, 0, 0.3), transparent 50%),
            /* 3D depth gradients */
            radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 255, 255, 0.05), transparent 70%),
            /* Subtle 3D lighting */
            linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%) !important;
        border: none !important;
        box-shadow: 
            /* 3D depth shadows - mobile optimized */
            0 10px 20px rgba(0, 0, 0, 0.4),
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 30px 60px rgba(0, 0, 0, 0.2) !important;
        border-radius: 50% !important;
    }
    
    .globe-title {
        font-size: 1.4rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .globe-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .globe-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        text-align: justify;
    }
    
    .btn-globe {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-width: 180px;
    }
}

/* Ultra Small Mobile (≤360px) */
@media (max-width: 360px) {
    .globe-container {
        width: 320px;
        height: 320px;
        margin: 0 auto !important;
        padding: 30px !important;
        margin: -30px auto !important;
        display: block !important;
        visibility: visible !important;
        overflow: visible !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        /* Ensure transform can be applied by JavaScript */
        transform: translate3d(0, 0, 0);
        will-change: transform;
    }
    
    .globe {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: 100% !important;
        overflow: visible !important;
        background: 
            /* 3D Sphere base */
            radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
            radial-gradient(ellipse at 70% 70%, rgba(0, 0, 0, 0.3), transparent 50%),
            /* 3D depth gradients */
            radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 255, 255, 0.05), transparent 70%),
            /* Subtle 3D lighting */
            linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%) !important;
        border: none !important;
        box-shadow: 
            /* 3D depth shadows - mobile optimized */
            0 10px 20px rgba(0, 0, 0, 0.4),
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 30px 60px rgba(0, 0, 0, 0.2) !important;
        border-radius: 50% !important;
    }
    
    .globe-title {
        font-size: 1.2rem;
    }
    
    .globe-subtitle {
        font-size: 0.8rem;
    }
    
    .globe-description {
        font-size: 0.75rem;
        text-align: justify;
    }
    
    .btn-globe {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        min-width: 160px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .globe-buttons {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* iPad Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .globe-section {
        padding: 3rem 0;
    }
    
    .globe-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .globe-text {
        max-width: 100%;
        text-align: center;
        order: 2;
    }
    
    .globe-visual {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .globe-container {
        width: 350px;
        height: 350px;
        margin: 0 auto;
        display: block;
        padding: 30px;
        margin: -30px auto;
        overflow: visible;
    }
    
    .globe {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.4),
            0 30px 60px rgba(0, 0, 0, 0.3),
            0 45px 90px rgba(0, 0, 0, 0.2);
    }
    
    .globe-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .globe-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .globe-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: justify;
    }
    
    .globe-buttons {
        justify-content: center;
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-globe {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 180px;
        text-align: center;
        justify-content: center;
    }
}

/* iPad Landscape (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .globe-section {
        padding: 3rem 0;
    }
    
    .globe-content {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .globe-text {
        max-width: 60%;
        text-align: left;
        order: 1;
    }
    
    .globe-visual {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .globe-container {
        width: 400px;
        height: 400px;
        margin: 0;
        display: block;
        padding: 40px;
        margin: -40px 0;
        overflow: visible;
    }
    
    .globe {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            0 40px 80px rgba(0, 0, 0, 0.3),
            0 60px 120px rgba(0, 0, 0, 0.2);
    }
    
    .globe-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .globe-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .globe-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: justify;
    }
    
    .globe-buttons {
        justify-content: flex-start;
        flex-direction: row;
        gap: 1rem;
        width: auto;
        max-width: none;
        margin: 0;
    }
    
    .btn-globe {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: auto;
        flex: none;
    }
}

/* Features Grid Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .feature-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Small tablets and large phones */
@media (min-width: 481px) and (max-width: 767px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        gap: 0.8rem;
    }
    
    .feature-card {
        padding: 0.8rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
}

/* Expertise Grid Responsive */
@media (max-width: 768px) {
    .expertise-areas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expertise-area {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .expertise-area-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .expertise-area-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .expertise-area-description li {
        padding-left: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .expertise-category h3 {
        font-size: 1.1rem;
    }
    
    .expertise-item h4 {
        font-size: 0.95rem;
    }
    
    .expertise-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .expertise-areas {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .expertise-grid {
        gap: 0.8rem;
    }
    
    .expertise-area {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .expertise-area-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .expertise-area-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .expertise-area-description li {
        padding-left: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .expertise-category h3 {
        font-size: 1rem;
    }
    
    .expertise-item h4 {
        font-size: 0.9rem;
    }
    
    .expertise-item p {
        font-size: 0.75rem;
    }
}

/* Roadmap Responsive */
@media (max-width: 768px) {
    .roadmap-timeline {
        max-width: 95%;
    }
    
    .roadmap-item {
        margin: 40px 0;
    }
    
    .roadmap-content {
        padding: 15px;
        max-width: calc(100% - 30px);
        margin-left: 30px !important;
        margin-right: 0 !important;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .roadmap-title {
        font-size: 1.1rem !important;
    }
    
    .roadmap-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .roadmap-item {
        margin: 30px 0;
    }
    
    .roadmap-content {
        padding: 12px;
        max-width: calc(100% - 25px);
        margin-left: 25px !important;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .roadmap-title {
        font-size: 1rem !important;
    }
    
    .roadmap-description {
        font-size: 0.75rem;
    }
}

/* Community Section Responsive */
@media (max-width: 768px) {
    .community-content {
        padding: 0 1rem;
    }
    
    .join-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .community-title {
        font-size: 1.5rem;
    }
    
    .community-description {
        font-size: 0.9rem;
        text-align: justify;
    }
    
    .community-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .community-buttons .btn-primary,
    .community-buttons .btn-secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .community-content {
        padding: 0 0.5rem;
    }
    
    .community-title {
        font-size: 1.3rem;
    }
    
    .community-description {
        font-size: 0.8rem;
        text-align: justify;
    }
    
    .community-buttons {
        max-width: 280px;
        gap: 0.6rem;
    }
    
    .community-buttons .btn-primary,
    .community-buttons .btn-secondary {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem 0;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}

/* Laptop Optimizations (1024px - 1200px) */
@media (min-width: 1024px) and (max-width: 1200px) {
    .feature-card {
        padding: 0.8rem;
    }
    
    .feature-title {
        font-size: 0.95rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
    
    .expertise-area {
        padding: 0.8rem;
    }
    
    .expertise-category h3 {
        font-size: 1rem;
    }
    
    .expertise-item h4 {
        font-size: 0.9rem;
    }
    
    .expertise-item p {
        font-size: 0.75rem;
    }
    
    .roadmap-content {
        padding: 0.8rem;
    }
    
    .roadmap-title {
        font-size: 1rem !important;
    }
    
    .roadmap-description {
        font-size: 0.8rem;
    }
    
    .community-title {
        font-size: 1.5rem;
    }
    
    .community-description {
        font-size: 0.9rem;
        text-align: justify;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    .network-insight {
        padding: 1rem;
    }
    
    .network-insight h3 {
        font-size: 1.2rem;
    }
    
    .network-insight p {
        font-size: 0.9rem;
    }
    
    .meetups {
        padding: 60px 1.5rem;
        min-height: 100vh;
    }
    
    .meetup-header {
        margin-bottom: 1.5rem;
    }
    
    .meetup-header h2 {
        font-size: 1.5rem;
    }
    
    .meetup-header p {
        font-size: 0.9rem;
    }
    
    .meetup-process {
        padding: 0 0.3rem;
    }
    
    .process-step {
        margin-bottom: 1.2rem;
    }
    
    .step-visual {
        margin-bottom: 0.6rem;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .step-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Enhanced Section Spacing for Small Mobile */
    .globe-section {
        padding: 50px 0;
        min-height: 100vh;
    }
    
    .features {
        padding: 50px 0;
        min-height: 100vh;
    }
    
    .expertise {
        padding: 50px 0;
        min-height: 100vh;
    }
    
    .network-power {
        padding: 40px 0;
        min-height: 100vh;
    }
    
    .roadmap {
        padding: 50px 0 120px 0;
        min-height: 100vh;
    }
}

@media (max-width: 480px) {
    .network-power {
        padding: 80px 1rem 30px 1rem;
    }
    
    .network-power .section-title {
        font-size: 2.2rem;
    }
    
    .network-power .section-subtitle {
        font-size: 0.9rem;
    }
    
    .tree-diagram {
        margin-top: 1rem;
        gap: 1.2rem;
    }
    
    .root-node {
        padding: 1.5rem;
        margin-bottom: 0;
    }
    
    .tree-branches {
        gap: 1rem;
        margin-top: 0;
        margin-left: 0;
    }
    
    .root-node .node-title {
        font-size: 1.4rem !important;
    }
    
    .branch-node .principle-title {
        font-size: 1rem !important;
    }
    
    .principle-description {
        font-size: 0.8rem;
    }
    
    .root-node .node-description {
        font-size: 0.85rem !important;
    }
    
    .principle-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }
    
    .principle-number svg {
        width: 1rem;
        height: 1rem;
    }
    
    .network-insight {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .insight-title {
        font-size: 1.1rem;
    }
    
    .insight-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .principle-item {
        padding: 0.8rem;
    }
    
    .principle-title {
        font-size: 0.9rem;
    }
    
    .principle-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .meetups {
        padding: 40px 1rem;
    }
    
    .meetup-header {
        margin-bottom: 1.2rem;
        text-align: center;
    }
    
    .meetup-header .section-title {
        font-size: 1.5rem;
    }
    
    .process-step {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .step-title {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .step-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .meetup-header p {
        font-size: 0.8rem;
    }
    
    .meetup-process {
        padding: 0 0.2rem;
    }
    
    .process-step {
        margin-bottom: 1rem;
    }
    
    .step-visual {
        margin-bottom: 0.5rem;
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    /* Enhanced Section Spacing for Very Small Mobile */
    .globe-section {
        padding: 40px 0;
        min-height: 100vh;
    }
    
    .features {
        padding: 40px 0;
        min-height: 100vh;
    }
    
    .expertise {
        padding: 40px 0;
        min-height: 100vh;
    }
    
    .network-power {
        padding: 30px 0;
        min-height: 100vh;
    }
    
    .network-power .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
        margin-top: 0;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        line-height: 1.3;
    }
    
    .network-power .section-subtitle {
        font-size: 0.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
        margin-top: 0;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        line-height: 1.5;
    }
    
    .tree-diagram {
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .root-node {
        padding: 1.2rem;
        margin-bottom: 0;
    }
    
    .tree-branches {
        gap: 0.8rem;
        margin-top: 0;
        margin-left: 0;
    }
    
    .root-node .node-title {
        font-size: 1.3rem !important;
    }
    
    .branch-node .principle-title {
        font-size: 0.9rem !important;
    }
    
    .principle-description {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .root-node .node-description {
        font-size: 0.75rem !important;
    }
    
    .principle-number {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.7rem;
    }
    
    .principle-number svg {
        width: 0.9rem;
        height: 0.9rem;
    }
    
    .roadmap {
        padding: 40px 0 100px 0;
        min-height: 100vh;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .expertise-area:hover,
    .roadmap-content:hover {
        transform: none;
    }
    
    .feature-card:active,
    .expertise-area:active {
        transform: scale(0.98);
    }
    
    /* Enhanced touch targets for mobile */
    .nav-links a,
    .mobile-nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        padding: 0.5rem;
    }
    
    /* Better touch feedback */
    .feature-card,
    .expertise-card,
    .roadmap-item,
    .community-card {
        transition: transform 0.1s ease, box-shadow 0.1s ease;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .feature-card:active,
    .expertise-card:active,
    .roadmap-item:active,
    .community-card:active {
        transform: scale(0.95);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    /* Improved button touch targets */
    button,
    .btn,
    .cta-button {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1.5rem;
    }
}

/* iPad specific touch optimizations */
@media (min-width: 768px) and (max-width: 1024px) and (pointer: coarse) {
    .feature-card,
    .expertise-card,
    .roadmap-item,
    .community-card {
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .feature-card:active,
    .expertise-card:active,
    .roadmap-item:active,
    .community-card:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    
    /* Larger touch targets for iPad */
    .nav-links a {
        padding: 0.75rem 1rem;
        min-height: 48px;
    }
    
    .mobile-menu-toggle {
        min-height: 48px;
        min-width: 48px;
    }
}

/* Background Blur Overlay */
.contact-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.contact-blur-overlay.show {
    opacity: 1;
}

/* Contact Collapse Section */
.contact-collapse {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 90%;
    max-width: 500px;
    background: rgba(15, 15, 15, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px 24px 0 0;
    backdrop-filter: blur(8px) saturate(120%);
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    box-shadow: 
        0 -20px 40px rgba(0, 0, 0, 0.3),
        0 -8px 16px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(100%);
    will-change: transform;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.contact-collapse.show {
    transform: translateX(-50%) translateY(0);
    -webkit-transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.contact-content {
    position: relative;
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: -1;
}

.contact-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-bottom: 0;
    overflow-x: auto;
    padding: 0 0.5rem;
}

.contact-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 70px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
}


.contact-icon svg {
    width: 26px;
    height: 26px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.contact-icon span {
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-icon:hover {
    transform: translateY(-4px) scale(1.02);
    color: #ffffff;
}

.contact-icon:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}


.contact-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    /* Mobile touch improvements */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    z-index: 10;
    /* Ensure visibility */
    opacity: 1;
    visibility: visible;
}

.contact-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-close:active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-close svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: inherit;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

.contact-close:hover svg {
    transform: rotate(90deg);
}

/* Fallback text for close button */
.contact-close .close-text {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: inherit;
    display: none; /* Hidden by default */
}

/* Show text fallback only when SVG is not visible */
.contact-close.no-svg .close-text {
    display: block !important;
}

.contact-close.no-svg svg {
    display: none !important;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .contact-collapse {
        width: 92%;
        max-width: 480px;
    }
    
    .contact-content {
        padding: 2.25rem 1.75rem 1.75rem 1.75rem;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-description {
        font-size: 0.95rem;
        max-width: 380px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .contact-collapse {
        width: 95%;
        max-width: 450px;
        border-radius: 20px 20px 0 0;
    }
    
    .contact-content {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        max-width: 350px;
    }
    
    .contact-icons {
        gap: 0.75rem;
        padding: 0 0.25rem;
    }
    
    .contact-icon {
        padding: 0.875rem 0.5rem;
        min-width: 65px;
    }
    
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-icon span {
        font-size: 0.7rem;
    }
    
    .contact-close {
        top: 1.25rem;
        right: 1.25rem;
        width: 40px;
        height: 40px;
    }
    
    .contact-close svg {
        width: 16px;
        height: 16px;
    }
}

/* Large mobile phones */
@media (max-width: 600px) {
    .contact-collapse {
        width: 98%;
        max-width: 420px;
        border-radius: 18px 18px 0 0;
    }
    
    .contact-content {
        padding: 1.75rem 1.25rem 1.25rem 1.25rem;
    }
    
    .contact-title {
        font-size: 1.4rem;
    }
    
    .contact-description {
        font-size: 0.85rem;
        margin-bottom: 1.75rem;
        max-width: 320px;
    }
    
    .contact-icons {
        gap: 0.6rem;
        padding: 0 0.2rem;
    }
    
    .contact-icon {
        padding: 0.8rem 0.45rem;
        min-width: 62px;
    }
    
    .contact-icon svg {
        width: 21px;
        height: 21px;
    }
    
    .contact-icon span {
        font-size: 0.68rem;
    }
    
    .contact-close {
        top: 1.1rem;
        right: 1.1rem;
        width: 38px;
        height: 38px;
    }
    
    .contact-close svg {
        width: 15px;
        height: 15px;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .contact-collapse {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 16px 16px 0 0;
        left: 0 !important;
        right: 0 !important;
        transform: translateX(0) translateY(100%) !important;
        will-change: transform;
        -webkit-transform: translateX(0) translateY(100%) !important;
    }
    
    .contact-collapse.show {
        transform: translateX(0) translateY(0) !important;
        -webkit-transform: translateX(0) translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }
    
    .contact-content {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .contact-title {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-description {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
        max-width: 280px;
    }
    
    .contact-icons {
        gap: 0.5rem;
        padding: 0 0.1rem;
        justify-content: space-between;
    }
    
    .contact-icon {
        padding: 0.75rem 0.4rem;
        min-width: 58px;
        flex: 1;
        max-width: 80px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-icon span {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .contact-close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .contact-close svg {
        width: 16px;
        height: 16px;
    }
}

/* Extra small mobile phones */
@media (max-width: 360px) {
    .contact-content {
        padding: 1.25rem 0.75rem 0.75rem 0.75rem;
    }
    
    .contact-title {
        font-size: 1.2rem;
    }
    
    .contact-description {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
        max-width: 250px;
    }
    
    .contact-icons {
        gap: 0.4rem;
        padding: 0;
    }
    
    .contact-icon {
        padding: 0.7rem 0.3rem;
        min-width: 55px;
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-icon span {
        font-size: 0.6rem;
    }
    
    .contact-close {
        top: 0.8rem;
        right: 0.8rem;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .contact-close svg {
        width: 14px;
        height: 14px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .contact-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .contact-content {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .contact-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icons {
        gap: 0.6rem;
    }
    
    .contact-icon {
        padding: 0.6rem 0.4rem;
        min-width: 60px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-icon span {
        font-size: 0.65rem;
    }
}
/* Partner Logos Banner */
.partner-logos {
    padding: 60px 0;
    background: transparent;
    position: relative;
    z-index: 10;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.partner-logos-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.partner-logos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.partner-logos-scroll {
    overflow-x: auto;
    overflow-y: visible;
    position: relative;
    width: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
    cursor: grab;
    padding: 20px 0;
    user-select: none; /* Prevent text selection during drag */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y pinch-zoom; /* Allow vertical scrolling and pinch zoom, horizontal handled by JS */
    overscroll-behavior-x: contain; /* Prevent page scroll when reaching edges */
}

.partner-logos-scroll:active {
    cursor: grabbing;
}

.partner-logos-scroll::-webkit-scrollbar {
    display: none; /* WebKit */
}

/* Partner Logos Wrapper */
.partner-logos-wrapper {
    position: relative;
    width: 100%;
}

/* Scroll Arrows */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}

/* Mobile and tablet arrows - simple and direct */
@media (max-width: 1024px) {
    .scroll-arrow {
        position: fixed !important;
        bottom: 50px !important;
        width: 60px !important;
        height: 60px !important;
        background: rgba(0, 0, 0, 0.7) !important;
        border: 3px solid white !important;
        border-radius: 50% !important;
        display: none !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 9999 !important;
        color: white !important;
        font-size: 24px !important;
        font-weight: bold !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .scroll-arrow.initialized {
        display: flex !important;
        opacity: 1;
        visibility: visible;
    }
    
    .scroll-arrow-left {
        left: calc(50% - 60px) !important;
        right: auto !important;
    }
    
    .scroll-arrow-right {
        left: calc(50% + 20px) !important;
        right: auto !important;
    }
}

.scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

/* Mobile hover effects */
@media (max-width: 768px) {
    .scroll-arrow:hover {
        background: rgba(0, 0, 0, 0.9) !important;
        transform: translateX(-50%) scale(1.1) !important;
    }
    
    .scroll-arrow-left:hover {
        transform: translateX(-50%) scale(1.1) !important;
    }
    
    .scroll-arrow-right:hover {
        transform: translateX(-50%) scale(1.1) !important;
    }
}

.scroll-arrow:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

.scroll-arrow:disabled:hover {
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
}

/* Mobile disabled hover effects */
@media (max-width: 768px) {
    .scroll-arrow:disabled:hover {
        transform: translateX(-50%) !important;
        background: rgba(0, 0, 0, 0.3) !important;
    }
    
    .scroll-arrow-left:disabled:hover {
        transform: translateX(-50%) !important;
    }
    
    .scroll-arrow-right:disabled:hover {
        transform: translateX(-50%) !important;
    }
}

.scroll-arrow-left {
    left: 20px;
}

.scroll-arrow-right {
    right: 20px;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Ensure SVG is visible on mobile and tablets */
@media (max-width: 1024px) {
    .scroll-arrow svg {
        display: none !important;
    }
    
    .scroll-arrow-left::before {
        content: "<" !important;
        font-size: 20px !important;
        color: white !important;
        font-weight: normal !important;
    }
    
    .scroll-arrow-right::before {
        content: ">" !important;
        font-size: 20px !important;
        color: white !important;
        font-weight: normal !important;
    }
}

.partner-logos-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    width: max-content;
    min-width: 200%;
    justify-content: flex-start;
    /* Ensure seamless loop - no gap between original and duplicate */
    white-space: nowrap;
}

.partner-logos-track.auto-scroll {
    animation: scroll-left 60s linear infinite;
    will-change: transform;
    animation-play-state: running;
    transform: translateZ(0);
    backface-visibility: hidden;
    /* Force hardware acceleration for smooth animation */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    /* Prevent subpixel rendering issues */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Ensure seamless loop with no visible jump */
    animation-timing-function: linear;
    /* Prevent any visual glitches during loop */
    contain: layout style paint;
}

.partner-logos-scroll:hover .partner-logos-track.auto-scroll {
    animation-play-state: paused;
}

.partner-logos-scroll:active .partner-logos-track.auto-scroll {
    animation-play-state: paused;
}

/* Pause animation when scrolling */
.partner-logos-scroll:focus .partner-logos-track.auto-scroll {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    margin: 10px 0;
    text-decoration: none;
    color: inherit;
}

.partner-logo:hover {
    background: transparent;
    border: none;
    transform: translateY(-2px);
    box-shadow: none;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.partner-logo:hover img {
    transform: translateY(-2px);
}


.partner-logo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    filter: 
        grayscale(100%) 
        brightness(0) 
        invert(1) 
        contrast(1.2);
    transition: filter 0.3s ease;
    background: transparent;
    background-color: transparent;
    display: block;
    margin: auto;
}

.partner-logo:hover img {
    filter: 
        grayscale(100%) 
        brightness(0) 
        invert(1) 
        contrast(1.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Clean rendering for all logos */

/* Specific fixes for logos with white backgrounds */
.partner-logo img[src*="harway"] {
    filter: 
        grayscale(100%) 
        brightness(0) 
        invert(1) 
        contrast(1.3);
    background: transparent !important;
    background-color: transparent !important;
}

/* Special handling for Placifai logo */
.partner-logo img[src*="placifai"] {
    filter: 
        grayscale(100%) 
        brightness(0.2) 
        invert(1) 
        contrast(1.5);
    background: transparent !important;
    background-color: transparent !important;
    opacity: 0.9;
}

/* Unified logo styling - all logos get the same treatment */
.partner-logo img {
    filter: 
        grayscale(100%) 
        brightness(0) 
        invert(1) 
        contrast(1.2);
    background: transparent !important;
    background-color: transparent !important;
    object-fit: contain;
    object-position: center;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    display: block;
    margin: auto;
}

/* Special handling for Grimm logo - needs different filter */
.partner-logo img[src*="grimm"] {
    filter: 
        grayscale(100%) 
        brightness(0) 
        invert(1) 
        contrast(1.2);
    background: transparent !important;
    background-color: transparent !important;
    object-fit: contain;
    object-position: center;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    display: block;
    margin: auto;
    opacity: 1;
}

/* Special handling for Analytic Order logo - make it smaller */
.partner-logo img[src*="analytic"] {
    filter: 
        grayscale(100%) 
        brightness(0) 
        invert(1) 
        contrast(1.2);
    background: transparent !important;
    background-color: transparent !important;
    object-fit: contain;
    object-position: center;
    width: 70% !important;
    height: 70% !important;
    max-width: 70% !important;
    max-height: 70% !important;
    display: block;
    margin: auto;
}

/* Special handling for ITC Herden logo - make it smaller */
.partner-logo img[src*="herden"] {
    filter: 
        grayscale(100%) 
        brightness(0) 
        invert(1) 
        contrast(1.2);
    background: transparent !important;
    background-color: transparent !important;
    object-fit: contain;
    object-position: center;
    width: 70% !important;
    height: 70% !important;
    max-width: 70% !important;
    max-height: 70% !important;
    display: block;
    margin: auto;
}


/* Unified hover effect for all logos */
.partner-logo:hover img {
    filter: 
        grayscale(100%) 
        brightness(0) 
        invert(1) 
        contrast(1.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Special hover effect for Grimm logo */
.partner-logo:hover img[src*="grimm"] {
    filter: 
        grayscale(100%) 
        brightness(0) 
        invert(1) 
        contrast(1.2);
    opacity: 1;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Special hover effect for Analytic Order logo */
.partner-logo:hover img[src*="analytic"] {
    filter: 
        grayscale(100%) 
        brightness(0) 
        invert(1) 
        contrast(1.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Special hover effect for ITC Herden logo */
.partner-logo:hover img[src*="herden"] {
    filter: 
        grayscale(100%) 
        brightness(0) 
        invert(1) 
        contrast(1.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}


@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Prevent any jump or gap during animation loop */
/* Note: This is already handled by the main .partner-logos-track.auto-scroll rule above */

/* Ensure smooth animation */
.partner-logos-track {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Pause animation when user is interacting */
.partner-logos-scroll:active .partner-logos-track,
.partner-logos-scroll:focus .partner-logos-track {
    animation-play-state: paused;
}

/* Mobile Slide Layout */
.partner-logos.mobile-layout .partner-logos-scroll {
    overflow: hidden;
    cursor: default;
    position: relative;
}

/* Ensure arrows are visible on mobile and tablet devices */
@media (max-width: 1024px) {
    .partner-logos {
        padding-bottom: 100px !important; /* Space for arrows */
    }
}

/* iPad specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .scroll-arrow {
        width: 70px !important;
        height: 70px !important;
        bottom: 60px !important;
    }
    
    .scroll-arrow-left::before,
    .scroll-arrow-right::before {
        font-size: 24px !important;
    }
    
    .scroll-arrow-left {
        left: calc(50% - 80px) !important;
    }
    
    .scroll-arrow-right {
        left: calc(50% + 10px) !important;
    }
}

.partner-logos.mobile-layout .partner-logos-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.8rem;
    width: 100%;
    min-width: auto;
    animation: none !important;
    transform: translateX(0);
    transition: transform 0.3s ease;
    height: 280px; /* 3 rows × 80px + 2 gaps × 0.8rem */
    margin-bottom: 80px; /* Space for arrows */
}

.partner-logos.mobile-layout .partner-logos-track.mobile-static {
    animation: none !important;
    transform: translateX(0);
}

.partner-logos.mobile-layout .partner-logo {
    width: 100%;
    height: 80px;
    padding: 0.6rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logos.mobile-layout .scroll-arrow {
    display: none !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 20 !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    transition: all 0.3s ease !important;
    position: absolute !important;
    top: auto !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    cursor: pointer !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    font-size: 18px !important;
    opacity: 0;
    visibility: hidden;
}

.partner-logos.mobile-layout .scroll-arrow.initialized {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.partner-logos.mobile-layout .scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.partner-logos.mobile-layout .scroll-arrow-left:hover {
    transform: translateX(-50%) scale(1.1);
}

.partner-logos.mobile-layout .scroll-arrow-right:hover {
    transform: translateX(-50%) scale(1.1);
}

.partner-logos.mobile-layout .scroll-arrow:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

.partner-logos.mobile-layout .scroll-arrow:disabled:hover {
    background: rgba(0, 0, 0, 0.3);
}

.partner-logos.mobile-layout .scroll-arrow-left:disabled:hover {
    transform: translateX(-50%);
}

.partner-logos.mobile-layout .scroll-arrow-right:disabled:hover {
    transform: translateX(-50%);
}

.partner-logos.mobile-layout .scroll-arrow-left {
    left: calc(50% - 35px) !important;
    transform: translateX(-50%) !important;
}

.partner-logos.mobile-layout .scroll-arrow-right {
    left: calc(50% + 35px) !important;
    transform: translateX(-50%) !important;
}

.partner-logos.mobile-layout .scroll-arrow svg {
    width: 24px !important;
    height: 24px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

/* Responsive Design for Partner Logos */
@media (max-width: 1200px) {
    .partner-logos {
        min-height: 100vh;
    }
    
    .partner-logo {
        width: 220px;
        height: 90px;
        padding: 1rem;
    }
    
    .partner-logos-track {
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .partner-logos {
        min-height: 100vh;
    }
    
    .partner-logo {
        width: 200px;
        height: 80px;
        padding: 0.9rem;
    }
    
    .partner-logos-track {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .partner-logos {
        padding: 40px 0;
        min-height: 100vh;
    }
    
    .partner-logos-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .partner-logo {
        width: 180px;
        height: 70px;
        padding: 0.8rem;
    }
    
    .partner-logos-track {
        gap: 1rem;
    }
    
    /* Mobile slide layout for tablets and smaller */
    .partner-logos.mobile-layout .partner-logos-track {
        gap: 0.6rem;
        height: 240px; /* 3 rows × 70px + 2 gaps × 0.6rem */
    }
    
    .partner-logos.mobile-layout .partner-logo {
        height: 70px;
        padding: 0.5rem;
    }
    
    .partner-logos.mobile-layout .scroll-arrow {
        width: 50px;
        height: 50px;
        bottom: 25px;
    }
    
    .partner-logos.mobile-layout .scroll-arrow-left {
        left: calc(50% - 35px) !important;
        transform: translateX(-50%) !important;
    }
    
    .partner-logos.mobile-layout .scroll-arrow-right {
        left: calc(50% + 35px) !important;
        transform: translateX(-50%) !important;
    }
    
    .partner-logos.mobile-layout .scroll-arrow svg {
        width: 24px !important;
        height: 24px !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 2 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
    }
}

@media (max-width: 480px) {
    .partner-logos {
        min-height: 100vh;
    }
    
    .partner-logo {
        width: 160px;
        height: 60px;
        padding: 0.7rem;
    }
    
    .partner-logos-track {
        gap: 0.8rem;
    }
    
    .partner-logos-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
    }
    
    .scroll-arrow-left {
        left: 10px;
    }
    
    .scroll-arrow-right {
        right: 10px;
    }
    
    .scroll-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    /* Mobile slide layout for small phones */
    .partner-logos.mobile-layout .partner-logos-track {
        gap: 0.4rem;
        height: 200px; /* 3 rows × 60px + 2 gaps × 0.4rem */
    }
    
    .partner-logos.mobile-layout .partner-logo {
        height: 60px;
        padding: 0.4rem;
    }
    
    .partner-logos.mobile-layout .scroll-arrow {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }
    
    .partner-logos.mobile-layout .scroll-arrow-left {
        left: calc(50% - 35px) !important;
        transform: translateX(-50%) !important;
    }
    
    .partner-logos.mobile-layout .scroll-arrow-right {
        left: calc(50% + 35px) !important;
        transform: translateX(-50%) !important;
    }
    
    .partner-logos.mobile-layout .scroll-arrow svg {
        width: 24px !important;
        height: 24px !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 2 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
    }
    
    .partner-logos.mobile-layout .partner-logos-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
}

/* Mobile: Alle Sektionen haben die gleiche Breite und passen in die Viewport-Breite */
@media (max-width: 768px) {
    /* Alle Sektionen auf 100% Viewport-Breite setzen mit horizontalem Padding */
    .word-section,
    .globe-section,
    .network-power,
    .meetups,
    .features,
    .roadmap,
    .expertise,
    .community,
    .partner-logos {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 100px !important; /* Ensure content is below fixed navbar */
    }
    
    /* Word Section speziell zentrieren */
    .word-section {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }
    
    /* Word Container zentrieren */
    .word-section .word-container {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    /* Container innerhalb der Sektionen anpassen */
    .globe-section .container,
    .network-power .container,
    .meetups .container,
    .features .container,
    .roadmap .container,
    .expertise .container,
    .community .container,
    .partner-logos .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
    
    /* Globe Content anpassen */
    .globe-content {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
    
    /* Alle Inhalte innerhalb der Container anpassen */
    .globe-text,
    .globe-visual,
    .community-content,
    .storyline-content,
    .meetup-header,
    .meetup-process,
    .features-grid,
    .expertise-areas,
    .roadmap-container,
    .roadmap-timeline,
    .tree-diagram {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Verhindere horizontales Scrollen */
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
}

/* Für sehr kleine mobile Geräte */
@media (max-width: 480px) {
    .word-section,
    .globe-section,
    .network-power,
    .meetups,
    .features,
    .roadmap,
    .expertise,
    .community,
    .partner-logos {
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 90px !important; /* Ensure content is below fixed navbar */
    }
    
    /* Word Section bleibt zentriert */
    .word-section {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }
    
    .word-section .word-container {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .globe-section .container,
    .network-power .container,
    .meetups .container,
    .features .container,
    .roadmap .container,
    .expertise .container,
    .community .container,
    .partner-logos .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .globe-content {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

