.global-presence {
    padding: 4rem 2rem;
}

.jvm-tooltip {
    background: rgba(20, 20, 25, 0.95) !important;
    border: 1px solid rgba(191, 90, 242, 0.3) !important;
    border-radius: 8px !important;
    padding: 0.5rem 1rem !important;
    color: #fff !important;
    font-family: var(--font-heading) !important;
    font-size: 1rem !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) !important;
}

.jvm-zoom-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Hero section visual enhancement */
.hero {
    position: relative;
    padding: 10rem 4rem 6rem;
    background: radial-gradient(circle at 80% 30%, rgba(191, 90, 242, 0.04) 0%, transparent 50%);
    overflow: hidden;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.hero-text h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), #00d1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-graphic {
    position: relative;
}

/* Orbital decorative rings behind hero image */
.hero-graphic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 1px dashed rgba(191, 90, 242, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: spin-clockwise 40s linear infinite;
}

.hero-graphic::after {
    content: '';
    position: absolute;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    border: 1px solid rgba(0, 209, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: spin-counter-clockwise 30s linear infinite;
}

@keyframes spin-clockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin-counter-clockwise {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/* Sleek logo cloud links as glass buttons */
.social-proof {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.002);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.social-proof p {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0.8;
}

.logo-cloud {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(4px);
}

.logo-item:hover {
    background: rgba(191, 90, 242, 0.04) !important;
    border-color: rgba(191, 90, 242, 0.35) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(191, 90, 242, 0.08) !important;
    transform: translateY(-2px);
}

/* Interactive Services Tab Pane */
.services {
    padding: 8rem 4rem;
    background: radial-gradient(circle at 50% 50%, rgba(191, 90, 242, 0.02) 0%, transparent 60%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.tab-btn {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    padding: 0.75rem 2.2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.tab-btn.active {
    background: #bf5af2 !important;
    color: #000 !important;
    border-color: #bf5af2 !important;
    box-shadow: 0 0 25px rgba(191, 90, 242, 0.35) !important;
}

.tab-pane {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.tab-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 90, 242, 0.3), transparent);
}

.pane-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
}

.visual-placeholder {
    background: transparent;
    border: none;
    padding: 0;
    overflow: visible;
    position: relative;
}

/* Founder Mission Styling */
.mission {
    padding: 8rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
    background: transparent;
}

.mission-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 3.5rem;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid #bf5af2;
    border-radius: 0 24px 24px 0;
    position: relative;
}

.mission-text {
    font-size: 1.25rem !important;
    line-height: 1.8 !important;
    color: var(--text-primary) !important;
    font-family: var(--font-body);
    font-weight: 400;
    font-style: italic;
}

.mission-signature {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sig-name {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 5rem;
    color: var(--accent);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: -1.2rem;
    display: inline-block;
    line-height: 1;
    opacity: 0.9;
    transform: rotate(-3deg);
}

.sig-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Map presence styling */
.global-presence {
    padding: 8rem 4rem;
    background: radial-gradient(circle at 50% 50%, rgba(191, 90, 242, 0.03) 0%, transparent 60%);
}

.global-presence .section-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

#axon-map {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero {
        padding: 8rem 2rem 4rem;
    }

    .services {
        padding: 6rem 2rem;
    }

    .tab-pane {
        padding: 2.5rem 2rem;
    }

    .pane-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission {
        padding: 6rem 2rem;
    }

    .mission-content {
        padding: 2.5rem 2rem;
    }

    .global-presence {
        padding: 6rem 2rem;
    }

    #axon-map {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .logo-item {
        padding: 0.6rem 1.25rem;
        font-size: 0.75rem;
    }

    .tab-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.75rem;
    }

    .tab-pane {
        padding: 2rem 1.5rem;
    }

    .pane-text h2 {
        font-size: 1.6rem;
    }

    .mission-content {
        padding: 2rem 1.5rem;
    }

    .mission-text {
        font-size: 1.1rem !important;
    }

    #axon-map {
        height: 260px !important;
    }
}
