:root {
    --bg-deep: #020408;
    --bg-surface: #060a17;
    --bg-card: rgba(8, 14, 32, 0.78);
    --bg-card-hover: rgba(14, 24, 52, 0.9);
    --bg-glass-badge: rgba(6, 12, 28, 0.82);
    --neon-cyan: #00f2fe;
    --neon-blue: #38bdf8;
    --laser-blue: #2563eb;
    --electric-violet: #8b5cf6;
    --glow-cyan: 0 0 25px rgba(0, 242, 254, 0.4);
    --glow-subtle: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    --glow-electric: 0 0 35px rgba(0, 242, 254, 0.4), 0 0 70px rgba(37, 99, 235, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.09);
    --border-card: rgba(56, 189, 248, 0.26);
    --border-card-hover: rgba(0, 242, 254, 0.65);
    --specular-inset: inset 0 1px 1px rgba(255, 255, 255, 0.22);
    --text-pure: #ffffff;
    --text-bright: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    background-color: var(--bg-deep);
    color: var(--text-bright);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch
}

::selection {
    background: var(--neon-cyan);
    color: #060913
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem
}

#continuous-webgl-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0
}

.aurora-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    transform: translate3d(0, 0, 0)
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    -webkit-filter: blur(120px);
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    will-change: transform
}

.blob-1 {
    top: -12%;
    left: 30%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, rgba(37, 99, 235, 0) 70%)
}

.blob-2 {
    top: 35%;
    right: -5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.22) 0%, rgba(0, 242, 254, 0) 70%)
}

.blob-3 {
    bottom: 10%;
    left: -10%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0) 70%)
}

@media (max-width:768px) {
    .aurora-blob {
        filter: blur(40px);
        -webkit-filter: blur(40px);
        will-change: auto
    }

    .blob-1 {
        width: 350px;
        height: 350px
    }

    .blob-2 {
        width: 350px;
        height: 350px
    }

    .blob-3 {
        width: 350px;
        height: 350px
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.1rem 0;
    transition: all 0.35s ease;
    background: transparent
}

.site-header.scrolled {
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.85rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff
}

.site-brand-logo {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(0, 242, 254, 0.22));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease
}



.brand-link:hover .site-brand-logo {
    transform: scale(1.03);
    filter: drop-shadow(0 0 24px rgba(0, 242, 254, 0.45))
}

.logo-badge {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.6))
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #ffffff
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none
}

.nav-item-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease
}

.nav-item-link:hover {
    color: var(--neon-cyan)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: color 0.2s ease
}

.lang-selector:hover {
    color: #fff
}

.btn-pill-white {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: #ffffff;
    color: #060913;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.65rem 1.45rem;
    border-radius: 9999px;
    text-decoration: none;
    border: 1px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 14px rgba(255, 255, 255, 0.2)
}

.btn-pill-white:hover {
    transform: translateY(-2px);
    background: #f1f5f9;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.5);
    color: #060913
}

.btn-pill-white svg {
    transition: transform 0.25s ease
}

.btn-pill-white:hover svg {
    transform: translateX(3px)
}

.btn-pill-translucent {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.65rem 1.45rem;
    border-radius: 9999px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1)
}

.btn-pill-translucent:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 242, 254, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2)
}

.play-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #fff
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer
}

.hero-mockup {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 8.5rem;
    padding-bottom: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
    align-items: center;
    gap: 2.5rem;
    position: relative
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.hero-title-mockup {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem
}

.text-neon-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.4)
}

.hero-subtext-mockup {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem
}

.hero-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #64748b;
    text-transform: uppercase
}

.mouse-icon {
    width: 16px;
    height: 26px;
    border: 1.5px solid #64748b;
    border-radius: 12px;
    position: relative
}

.mouse-icon::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 5px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: mouseWheel 1.8s ease-in-out infinite
}

@keyframes mouseWheel {
    0% {
        opacity: 0;
        transform: translate(-50%, 0)
    }

    40% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 8px)
    }
}

.scroll-bar {
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, #64748b, rgba(100, 116, 139, 0.1))
}

.hero-3d-stage {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px
}

.hero-emblem-aura {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.28) 0%, rgba(37, 99, 235, 0.18) 42%, rgba(2, 6, 23, 0) 72%);
    filter: blur(48px);
    pointer-events: none;
    z-index: 1;
    animation: auraPulse 6s ease-in-out infinite alternate
}

@keyframes auraPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.7
    }

    100% {
        transform: scale(1.12);
        opacity: 1
    }
}

.hero-emblem-orbit-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2
}

.hero-emblem-orbit-ring.ring-outer {
    width: 490px;
    height: 490px;
    border: 1px dashed rgba(0, 242, 254, 0.25);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.1);
    animation: spinOrbit 45s linear infinite
}

.hero-emblem-orbit-ring.ring-inner {
    width: 390px;
    height: 390px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-top: 2px solid rgba(0, 242, 254, 0.75);
    border-bottom: 2px solid rgba(37, 99, 235, 0.6);
    box-shadow: inset 0 0 25px rgba(0, 242, 254, 0.08);
    animation: spinOrbitReverse 30s linear infinite
}

@keyframes spinOrbit {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes spinOrbitReverse {
    0% {
        transform: rotate(360deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

.emblem-3d-visual-wrap,
.laptop-3d-visual-wrap {
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5
}

.emblem-glow-container {
    position: relative;
    width: 330px;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    animation: emblemLevitate 5s ease-in-out infinite alternate;
    z-index: 8;
    cursor: pointer
}

@keyframes emblemLevitate {
    0% {
        transform: translateY(0px) rotate(0deg)
    }

    50% {
        transform: translateY(-14px) rotate(0.6deg)
    }

    100% {
        transform: translateY(0px) rotate(0deg)
    }
}

.emblem-3d-render-img,
.laptop-3d-render-img {
    width: 320px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(0, 242, 254, 0.45)) drop-shadow(0 20px 50px rgba(2, 6, 23, 0.95));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    user-select: none
}

.emblem-glow-container:hover .emblem-3d-render-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 60px rgba(0, 242, 254, 0.75)) drop-shadow(0 25px 55px rgba(2, 6, 23, 0.95))
}

.emblem-reflection-sheen {
    position: absolute;
    top: -10%;
    left: -30%;
    width: 30%;
    height: 120%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
    transform: rotate(25deg);
    pointer-events: none;
    opacity: 0;
    animation: sheenSweep 8s ease-in-out infinite
}

@keyframes sheenSweep {

    0%,
    35% {
        opacity: 0;
        transform: translateX(-100%) rotate(25deg)
    }

    45% {
        opacity: 1
    }

    55%,
    100% {
        opacity: 0;
        transform: translateX(400%) rotate(25deg)
    }
}

.floating-glass-card {
    position: absolute;
    background: rgba(4, 9, 24, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 254, 0.35);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 22px rgba(0, 242, 254, 0.2), var(--specular-inset);
    border-radius: 16px;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 25;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    cursor: default;
    white-space: nowrap
}

.floating-glass-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 32px rgba(0, 242, 254, 0.45)
}

.badge-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    flex-shrink: 0
}

.badge-icon-box.badge-ig {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(253, 29, 29, 0.2));
    border-color: rgba(225, 48, 108, 0.45);
    color: #f43f5e
}

.badge-texts h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25
}

.badge-texts span {
    font-size: 0.78rem;
    color: #94a3b8
}

.badge-top-left {
    top: 4%;
    left: -6%;
    animation: badgeFloat1 5s ease-in-out infinite alternate
}

.badge-bottom-left {
    bottom: 6%;
    left: -8%;
    animation: badgeFloat2 6s ease-in-out infinite alternate
}

.badge-top-right {
    top: 6%;
    right: -6%;
    animation: badgeFloat3 5.5s ease-in-out infinite alternate
}

.badge-bottom-right {
    bottom: 8%;
    right: -4%;
    animation: badgeFloat4 6.5s ease-in-out infinite alternate
}

.hero-vertical-motto {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(148, 163, 184, 0.45);
    pointer-events: none;
    user-select: none;
    z-index: 20
}

@keyframes badgeFloat1 {
    0% {
        transform: translateY(0px)
    }

    100% {
        transform: translateY(-8px)
    }
}

@keyframes badgeFloat2 {
    0% {
        transform: translateY(0px)
    }

    100% {
        transform: translateY(8px)
    }
}

@keyframes badgeFloat3 {
    0% {
        transform: translateY(0px)
    }

    100% {
        transform: translateY(-9px)
    }
}

@keyframes badgeFloat4 {
    0% {
        transform: translateY(0px)
    }

    100% {
        transform: translateY(9px)
    }
}

.hero-vertical-motto {
    position: absolute;
    right: -25px;
    top: 45%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #64748b;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    pointer-events: none
}

.metrics-mockup-bar.client-marquee-section {
    position: relative;
    z-index: 15;
    padding: 2.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(4, 8, 20, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}

.marquee-subtext-heading {
    text-align: center;
    margin-bottom: 1.25rem;
}

.marquee-subtext-heading span {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #64748b;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.marquee-subtext-heading span::before,
.marquee-subtext-heading span::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: rgba(0, 242, 254, 0.35);
}

.client-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.client-marquee-track {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    width: max-content;
    animation: scrollLogosInfinite 42s linear infinite;
    padding: 0.5rem 0;
}

.client-marquee-track:hover {
    animation-play-state: paused;
}

.client-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 64px;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.client-logo-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.25);
    transform: translateY(-3px) scale(1.04);
}

.marquee-logo-img {
    max-width: 125px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0.82;
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: all 0.35s ease;
}

.marquee-logo-img.logo-invert {
    filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
    opacity: 0.88;
}

.client-logo-card:hover .marquee-logo-img {
    opacity: 1;
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(0, 242, 254, 0.45));
}

.client-logo-card:hover .marquee-logo-img.logo-invert {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(0, 242, 254, 0.55));
}

@keyframes scrollLogosInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .client-marquee-track {
        gap: 1.2rem;
        animation-duration: 28s;
    }

    .client-logo-card {
        width: 140px;
        height: 54px;
        padding: 0.5rem 0.9rem;
    }

    .marquee-logo-img {
        max-width: 105px;
        max-height: 50px;
    }
}

.section-wrapper {
    position: relative;
    z-index: 10;
    padding: 6.5rem 0
}

.section-label-cyan {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--neon-cyan);
    text-transform: uppercase;
    margin-bottom: 0.9rem
}

.section-title-big {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.02em
}

.section-subtext {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 500px
}

.link-arrow-cyan {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.25s ease;
    margin-top: 0.75rem
}

.link-arrow-cyan:hover {
    gap: 0.8rem
}

.section-split-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    gap: 2rem;
    flex-wrap: wrap
}

.slider-arrow-controls {
    display: flex;
    gap: 0.75rem
}

.circle-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease
}

.circle-nav-btn:hover {
    background: rgba(0, 242, 254, 0.15);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: scale(1.05)
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: transparent;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.65rem 1.45rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease
}

.btn-outline-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px)
}

.services-mockup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.service-mockup-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden
}

.service-mockup-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-card-hover);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.2)
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 1.25rem;
    min-height: 2.8rem
}

.service-card-visual {
    width: 100%;
    height: 190px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #090e1f;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.06)
}

.service-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.service-mockup-card:hover .service-card-visual img {
    transform: scale(1.06)
}

.service-card-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1
}

.service-card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto
}

.service-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1)
}

.service-explore-btn svg {
    transition: transform 0.3s ease
}

.service-mockup-card:hover .service-explore-btn {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: #060913;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4)
}

.service-mockup-card:hover .service-explore-btn svg {
    transform: translateX(4px)
}

.circle-arrow-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease
}

.service-mockup-card:hover .circle-arrow-link {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: #060913;
    transform: scale(1.1)
}

.sectors-slider-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0 1.5rem
}

.sectors-slider-container::-webkit-scrollbar {
    display: none
}

.sectors-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    min-width: 1000px
}

.sector-slice-card {
    position: relative;
    height: 310px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    cursor: pointer;
    text-decoration: none
}

.sector-slice-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 254, 0.25)
}

.sector-slice-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 1
}

.sector-slice-card:hover .sector-slice-img {
    transform: scale(1.08)
}

.sector-slice-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 9, 19, 0.1) 0%, rgba(6, 9, 19, 0.85) 75%, #060913 100%);
    z-index: 2
}

.sector-slice-content {
    position: relative;
    z-index: 3
}

.sector-slice-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3
}

.projects-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem
}

.project-showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: block
}

.project-showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 242, 254, 0.25)
}

.project-card-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #090e1f
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.project-showcase-card:hover .project-card-image img {
    transform: scale(1.07)
}

.project-card-info {
    padding: 1.5rem
}

.project-title-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem
}

.project-category-text {
    font-size: 0.85rem;
    color: #94a3b8
}

.cta-banner-mockup {
    position: relative;
    z-index: 10;
    margin: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.cta-banner-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 9, 19, 0.95) 0%, rgba(6, 9, 19, 0.75) 45%, rgba(6, 9, 19, 0.5) 100%);
    z-index: 2
}

.cta-banner-inner {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 4rem 0
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 0.75rem
}

.cta-banner-sub {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 2rem
}

.cta-banner-motto {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    line-height: 1.6;
    text-align: right
}

.footer-mockup {
    position: relative;
    z-index: 10;
    padding: 4.5rem 0 2.5rem;
    background: #04060d;
    border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem
}

.footer-nav-list {
    display: flex;
    gap: 2rem;
    list-style: none
}

.footer-nav-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.25s ease
}

.footer-nav-list a:hover {
    color: var(--neon-cyan)
}

.footer-social-cluster {
    display: flex;
    align-items: center;
    gap: 0.85rem
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.25s ease
}

.social-icon-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-2px)
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #94a3b8;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-legal-links {
    display: flex;
    gap: 1.25rem
}

.footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease
}

.footer-legal-links a:hover {
    color: #cbd5e1
}

.footer-motto-bold {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #94a3b8;
    text-transform: uppercase
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 13, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.modal-container {
    background: #090e21;
    border: 1px solid var(--border-card);
    border-radius: 24px;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 242, 254, 0.25);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2.5rem
}

.modal-overlay.active .modal-container {
    transform: scale(1)
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg)
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem
}

.form-span-2 {
    grid-column: span 2
}

@media (max-width:640px) {
    .modal-container {
        padding: 1.75rem 1.25rem
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .form-span-2 {
        grid-column: span 1
    }
}

.field-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 0.5rem
}

.field-input,
.field-select,
.field-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.25s ease
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
    background: rgba(255, 255, 255, 0.07)
}

.field-textarea {
    min-height: 110px;
    resize: vertical
}

.captcha-row-group {
    margin-top: 0.25rem
}

.captcha-question-badge {
    display: inline-block;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.35);
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 2px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    margin-left: 6px
}

.captcha-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem
}

.captcha-field {
    max-width: 200px !important
}

.btn-captcha-refresh {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--neon-cyan);
    border-radius: 10px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0
}

.btn-captcha-refresh:hover {
    background: rgba(0, 242, 254, 0.15);
    border-color: var(--neon-cyan);
    transform: rotate(45deg)
}

.modal-choices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.65rem;
    margin-bottom: 1.5rem
}

.modal-choice-label {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.25s ease
}

.modal-choice-label input {
    display: none
}

.modal-choice-label:hover {
    border-color: rgba(0, 242, 254, 0.4)
}

.modal-choice-label.active {
    background: rgba(0, 242, 254, 0.12);
    border-color: var(--neon-cyan);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.25)
}

.floating-dock-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease
}

.floating-dock-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6)
}

.badge-ticker-box {
    height: 22px;
    overflow: hidden;
    position: relative
}

.badge-ticker-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1)
}

.badge-ticker-item {
    height: 22px;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: #cbd5e1;
    white-space: nowrap
}

.live-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: dotBlink 1.5s ease-in-out infinite alternate
}

.live-pulse-dot.dot-green {
    background: #10b981;
    box-shadow: 0 0 8px #10b981
}

.live-pulse-dot.dot-amber {
    background: #f59e0b;
    box-shadow: 0 0 8px #f59e0b
}

@keyframes dotBlink {
    0% {
        opacity: 0.4;
        transform: scale(0.85)
    }

    100% {
        opacity: 1;
        transform: scale(1.15)
    }
}

.trend-pill {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 6px;
    background: rgba(0, 242, 254, 0.15);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 242, 254, 0.3)
}

.mini-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 14px
}

.eq-bar {
    width: 3px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: eqJump 1.2s ease-in-out infinite alternate
}

.eq-bar:nth-child(1) {
    height: 6px;
    animation-delay: 0.1s
}

.eq-bar:nth-child(2) {
    height: 12px;
    animation-delay: 0.3s
}

.eq-bar:nth-child(3) {
    height: 9px;
    animation-delay: 0.2s
}

.eq-bar:nth-child(4) {
    height: 14px;
    animation-delay: 0.4s
}

@keyframes eqJump {
    0% {
        height: 4px
    }

    100% {
        height: 14px
    }
}

.luxury-blurred-section {
    position: relative;
    overflow: hidden;
    padding: 7rem 0
}

.luxury-blurred-bg {
    position: absolute;
    inset: -40px;
    background-image: url('../img/bg-luxury-bokeh.webp');
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.28) contrast(1.15);
    z-index: 1;
    pointer-events: none;
    transform: scale(1.05)
}

.luxury-blurred-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(6, 9, 19, 0.65) 0%, rgba(6, 9, 19, 0.95) 85%);
    z-index: 2;
    pointer-events: none
}

.luxury-section-content {
    position: relative;
    z-index: 5
}

.platform-orbital-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    gap: 3rem;
    margin-top: 1rem
}

.orbital-stage {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center
}

.orbital-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(56, 189, 248, 0.25);
    pointer-events: none
}

.ring-inner {
    width: 300px;
    height: 300px;
    animation: rotateRing 35s linear infinite
}

.ring-outer {
    width: 440px;
    height: 440px;
    border-style: solid;
    border-color: rgba(56, 189, 248, 0.12);
    animation: rotateRing 50s linear infinite reverse
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.orbital-center-cube {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #090e21, #1e293b);
    border: 2px solid var(--neon-cyan);
    border-radius: 22px;
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.5), inset 0 0 15px rgba(0, 242, 254, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: cubeFloat 4s ease-in-out infinite alternate
}

.orbital-center-emblem {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    animation: emblemFloatStage 4.5s ease-in-out infinite alternate
}

.orbital-emblem-aura {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.45) 0%, rgba(121, 40, 202, 0.25) 50%, transparent 75%);
    filter: blur(24px);
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease
}

.orbital-emblem-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.6)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    user-select: none;
    position: relative;
    z-index: 2
}

.orbital-center-emblem:hover .orbital-emblem-img {
    transform: scale(1.12);
    filter: drop-shadow(0 0 45px rgba(0, 242, 254, 0.9)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.95))
}

.orbital-center-emblem:hover .orbital-emblem-aura {
    transform: scale(1.3);
    opacity: 1
}

@keyframes emblemFloatStage {
    0% {
        transform: translateY(-5px) rotate(0deg)
    }

    50% {
        transform: translateY(6px) rotate(1.5deg)
    }

    100% {
        transform: translateY(-5px) rotate(0deg)
    }
}

@keyframes cubeFloat {
    0% {
        transform: translateY(-4px) rotate(0deg)
    }

    100% {
        transform: translateY(4px) rotate(3deg)
    }
}

.orbital-node {
    position: absolute;
    background: rgba(9, 15, 34, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 254, 0.15);
    border-radius: 14px;
    padding: 0.65rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    z-index: 12;
    transition: all 0.3s ease;
    white-space: nowrap
}

.orbital-node:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 242, 254, 0.4);
    transform: scale(1.06)
}

.node-icon-glow {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 242, 254, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan)
}

.pos-top {
    top: 12px;
    left: 50%;
    transform: translateX(-50%)
}

.pos-top:hover {
    transform: translateX(-50%) scale(1.06)
}

.pos-top-right {
    top: 75px;
    right: 10px
}

.pos-bottom-right {
    bottom: 75px;
    right: 15px
}

.pos-bottom {
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%)
}

.pos-bottom:hover {
    transform: translateX(-50%) scale(1.06)
}

.pos-bottom-left {
    bottom: 75px;
    left: 15px
}

.pos-top-left {
    top: 75px;
    left: 10px
}

.testimonial-slider-wrap {
    max-width: 980px;
    margin: 0 auto;
    position: relative
}

.testimonial-track-stage {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-radius: 24px
}

.testimonial-card-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 380px 1fr;
    background: rgba(9, 15, 34, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(56, 189, 248, 0.28);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px) scale(0.97);
    transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1)
}

.testimonial-card-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    position: relative
}

.testimonial-card-slide.exit-left {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-40px) scale(0.97)
}

.testimonial-hotel-image {
    position: relative;
    height: 100%;
    overflow: hidden
}

.testimonial-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.testimonial-card-slide:hover .testimonial-hotel-image img {
    transform: scale(1.05)
}

.testimonial-hotel-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.4rem 0.85rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.4rem
}

.testimonial-content {
    padding: 2.8rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.stars-rating-row {
    display: flex;
    gap: 0.25rem;
    color: #f59e0b;
    font-size: 1.15rem;
    margin-bottom: 1.25rem
}

.testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #f1f5f9;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 1rem
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, rgba(6, 10, 23, 0.92) 80%);
    border: 1.5px solid rgba(0, 242, 254, 0.5);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
    padding: 6px
}

.author-details h5,
.author-details .author-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff
}

.author-details span {
    font-size: 0.82rem;
    color: #94a3b8
}

.testimonial-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.25rem
}

.slider-dots-group {
    display: flex;
    align-items: center;
    gap: 0.55rem
}

.slider-dot-pill {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
    margin: 0 4px
}

.slider-dot-pill::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 48px;
    min-height: 48px
}

.slider-dot-pill.active {
    width: 32px;
    border-radius: 9999px;
    background: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.8)
}

.insights-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2rem
}

.insight-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column
}

.insight-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.2)
}

.insight-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative
}

.insight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.insight-card:hover .insight-thumb img {
    transform: scale(1.06)
}

.insight-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem
}

.insight-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(0, 242, 254, 0.12);
    color: var(--neon-cyan);
    text-transform: uppercase
}

.insight-date {
    font-size: 0.78rem;
    color: #94a3b8
}

.insight-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 1.25rem
}

.insight-link {
    margin-top: auto;
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease
}

.insight-link:hover {
    gap: 0.7rem
}

.hud-cinematics-section {
    position: relative;
    padding: 6rem 0 7rem;
    background: radial-gradient(circle at 50% 30%, rgba(10, 20, 48, 0.45) 0%, var(--bg-deep) 70%);
    overflow: hidden
}

.hud-header-center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.5rem
}

.hud-visual-showcase {
    position: relative;
    width: 100%;
    max-width: 1140px;
    height: 560px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 254, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 45px rgba(0, 242, 254, 0.18), var(--specular-inset);
    transform-style: preserve-3d;
    perspective: 1200px
}

.hud-media-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.hud-cinematic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.72) contrast(1.15) saturate(1.1)
}

.hud-visual-showcase:hover .hud-cinematic-img {
    transform: scale(1.08)
}

.hud-scan-grid {
    position: absolute;
    inset: 0;
    background-size: 36px 36px;
    background-image: linear-gradient(to right, rgba(0, 242, 254, 0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 242, 254, 0.08) 1px, transparent 1px);
    pointer-events: none;
    z-index: 2
}

.hud-radar-sweep {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(0, 242, 254, 0.15) 0deg, transparent 45deg, transparent 360deg);
    animation: radarRotate 8s linear infinite;
    pointer-events: none;
    z-index: 3
}

@keyframes radarRotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.hud-vignette-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(2, 4, 8, 0.85) 90%);
    pointer-events: none;
    z-index: 4
}

.hud-glass-widget {
    position: absolute;
    z-index: 10;
    background: rgba(4, 9, 24, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 1.25rem 1.4rem;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 242, 254, 0.15), var(--specular-inset);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease
}

.hud-glass-widget:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 242, 254, 0.35)
}

.hud-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
    margin-bottom: 0.6rem
}

.hud-live-beacon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 10px #34d399;
    animation: liveBeaconPulse 1.8s infinite
}

@keyframes liveBeaconPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8)
    }
}

.hud-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff
}

.hud-stat-value .hud-unit {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 600
}

.hud-stat-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    margin: 0.7rem 0 0.5rem;
    overflow: hidden
}

.hud-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00f2fe, #38bdf8);
    border-radius: 99px;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.8)
}

.hud-stat-sub {
    font-size: 0.76rem;
    color: #94a3b8;
    white-space: nowrap
}

.hud-occupancy-widget {
    top: 28px;
    left: 28px;
    min-width: 260px;
    animation: badgeFloat1 6s ease-in-out infinite alternate
}

.hud-revpar-widget {
    top: 28px;
    right: 28px;
    min-width: 280px;
    animation: badgeFloat3 6.5s ease-in-out infinite alternate
}

.hud-badge-gold {
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
    font-size: 0.68rem;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    letter-spacing: 0.08em
}

.hud-mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 32px;
    margin: 0.6rem 0
}

.hud-mini-chart span {
    flex: 1;
    background: linear-gradient(180deg, #fbbf24, rgba(245, 158, 11, 0.25));
    border-radius: 4px;
    transition: height 0.4s ease
}

.hud-guest-widget {
    bottom: 28px;
    left: 28px;
    min-width: 320px;
    animation: badgeFloat2 7s ease-in-out infinite alternate
}

.hud-guest-stream {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem
}

.hud-stream-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    border-left: 2px solid var(--neon-cyan)
}

.hud-center-action {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10
}

@media (max-width:1200px) {
    .hero-title-mockup {
        font-size: 3.2rem
    }

    .services-mockup-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:992px) {
    .site-header {
        padding: 0.8rem 0
    }

    .site-header.scrolled {
        padding: 0.65rem 0
    }

    .header-actions {
        gap: 0.65rem
    }

    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: #ffffff;
        cursor: pointer;
        padding: 0;
        transition: all 0.25s ease
    }

    .mobile-nav-toggle:active {
        transform: scale(0.94);
        background: rgba(0, 242, 254, 0.15)
    }

    .mobile-nav-toggle svg {
        transition: transform 0.3s ease
    }

    .mobile-nav-toggle.is-active svg {
        transform: rotate(90deg)
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(6, 10, 23, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(0, 242, 254, 0.25);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85);
        padding: 1.5rem 1.75rem;
        gap: 1rem;
        z-index: 9999;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1)
    }

    .nav-list.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0)
    }

    .nav-item-link {
        font-size: 1.05rem;
        font-weight: 600;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: block;
        width: 100%
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem
    }

    .hero-tagline,
    .hero-actions-row,
    .hero-scroll-indicator {
        justify-content: center
    }

    .hero-subtext-mockup {
        margin-left: auto;
        margin-right: auto
    }

    .hero-3d-stage {
        height: 460px;
        overflow: hidden
    }

    .emblem-3d-visual-wrap,
    .laptop-3d-visual-wrap {
        max-width: 480px;
        height: 440px
    }

    .emblem-glow-container {
        width: 260px;
        height: 260px
    }

    .emblem-3d-render-img,
    .laptop-3d-render-img {
        width: 250px
    }

    .hero-emblem-aura,
    .hero-emblem-orbit-ring.ring-outer {
        width: 380px;
        height: 380px
    }

    .hero-emblem-orbit-ring.ring-inner {
        width: 300px;
        height: 300px
    }

    .hero-vertical-motto {
        display: none
    }

    .metrics-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem
    }

    .metric-column:not(:last-child)::after {
        display: none
    }

    .projects-showcase-grid {
        grid-template-columns: 1fr
    }

    .platform-orbital-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .insights-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }

    .testimonial-card-slide {
        grid-template-columns: 300px 1fr
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem
    }

    .cta-banner-motto {
        text-align: center
    }

    .footer-top-row {
        flex-direction: column;
        text-align: center;
        gap: 2rem
    }

    .footer-nav-list {
        flex-wrap: wrap;
        justify-content: center
    }
}

@media (max-width:768px) {
    .aurora-blob {
        filter: blur(40px);
        -webkit-filter: blur(40px);
        opacity: 0.55
    }

    .blob-1 {
        width: 340px;
        height: 340px;
        top: -5%
    }

    .blob-2 {
        width: 340px;
        height: 340px;
        top: 40%
    }

    .blob-3 {
        width: 300px;
        height: 300px
    }

    .luxury-blurred-bg {
        filter: blur(12px) brightness(0.3);
        -webkit-filter: blur(12px) brightness(0.3);
        inset: -10px;
        transform: scale(1.02)
    }

    .hero-mockup {
        padding-top: 7rem;
        padding-bottom: 3rem
    }

    .hero-title-mockup {
        font-size: 2.35rem;
        line-height: 1.18
    }

    .services-mockup-grid {
        grid-template-columns: 1fr
    }

    .metric-number {
        font-size: 2.3rem
    }

    .hero-3d-stage {
        height: 360px;
        overflow: hidden
    }

    .emblem-3d-visual-wrap,
    .laptop-3d-visual-wrap {
        max-width: 100%;
        height: 340px
    }

    .emblem-glow-container {
        width: 220px;
        height: 220px
    }

    .emblem-3d-render-img,
    .laptop-3d-render-img {
        width: 200px
    }

    .hero-emblem-aura,
    .hero-emblem-orbit-ring.ring-outer {
        width: 280px;
        height: 280px
    }

    .hero-emblem-orbit-ring.ring-inner {
        width: 220px;
        height: 220px
    }

    .floating-glass-card {
        display: none !important
    }

    .form-grid-2 {
        grid-template-columns: 1fr
    }

    .form-span-2 {
        grid-column: span 1
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important
    }

    .sectors-slider-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 0 1.25rem;
        margin: 0 -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem
    }

    .sectors-track {
        display: flex;
        gap: 1rem;
        min-width: unset;
        width: max-content;
        padding-right: 1.5rem
    }

    .sector-slice-card {
        flex: 0 0 210px;
        height: 240px;
        scroll-snap-align: start;
        border-radius: 18px;
        padding: 1.25rem 1.15rem
    }

    .sector-slice-title {
        font-size: 1.05rem
    }

    .platform-orbital-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important
    }

    .orbital-stage {
        height: auto !important;
        min-height: unset !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding: 0.5rem 0 !important
    }

    .orbital-ring,
    .orbital-center-cube,
    .orbital-center-emblem {
        display: none !important
    }

    .orbital-node {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        white-space: normal !important;
        width: 100% !important;
        padding: 0.85rem 0.95rem !important;
        font-size: 0.84rem !important;
        line-height: 1.35 !important;
        background: rgba(9, 15, 34, 0.88) !important;
        border: 1px solid rgba(56, 189, 248, 0.28) !important;
        border-radius: 14px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.65rem !important
    }

    .orbital-node:hover {
        transform: none !important
    }

    .node-icon-glow {
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem !important;
        flex-shrink: 0 !important
    }

    .hud-visual-showcase {
        height: auto !important;
        min-height: unset !important;
        padding: 1.25rem 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        border-radius: 20px !important
    }

    .hud-media-wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%
    }

    .hud-glass-widget,
    .hud-occupancy-widget,
    .hud-revpar-widget,
    .hud-guest-widget {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
        padding: 1rem 1.15rem !important;
        animation: none !important;
        transform: none !important;
        margin: 0 !important
    }

    .hud-stat-value {
        font-size: 1.65rem !important
    }

    .hud-mini-chart {
        height: 28px !important;
        margin: 0.5rem 0 !important
    }

    .hud-stream-item {
        font-size: 0.78rem !important;
        padding: 0.45rem 0.65rem !important
    }

    .hud-center-action {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        width: 100% !important;
        margin-top: 0.25rem !important;
        z-index: 10
    }

    .hud-center-action .btn-pill-white {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.85rem 1.25rem !important
    }

    .testimonial-slider-wrap {
        min-height: unset !important
    }

    .testimonial-track-stage {
        min-height: unset !important;
        height: auto !important
    }

    .testimonial-card-slide {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        position: absolute !important;
        inset: 0 !important;
        height: auto !important;
        min-height: unset !important;
        border-radius: 20px !important
    }

    .testimonial-card-slide.active {
        position: relative !important
    }

    .testimonial-hotel-image {
        width: 100% !important;
        height: 200px !important;
        flex-shrink: 0 !important
    }

    .testimonial-hotel-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important
    }

    .testimonial-hotel-badge {
        top: 1rem !important;
        left: 1rem !important;
        padding: 0.35rem 0.75rem !important;
        font-size: 0.75rem !important
    }

    .testimonial-content {
        padding: 1.35rem 1.15rem !important;
        justify-content: flex-start !important
    }

    .stars-rating-row {
        font-size: 1rem !important;
        margin-bottom: 0.65rem !important
    }

    .testimonial-quote {
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
        margin-bottom: 1.25rem !important
    }

    .testimonial-author-row {
        margin-top: auto !important;
        gap: 0.75rem !important
    }

    .author-img {
        width: 44px !important;
        height: 44px !important;
        padding: 5px !important
    }

    .author-details h5,
    .author-details .author-name {
        font-size: 0.95rem !important
    }

    .author-details span {
        font-size: 0.78rem !important
    }

    .testimonial-nav-row {
        margin-top: 1.5rem !important;
        gap: 1.15rem !important
    }

    .insights-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        margin-top: 1.5rem !important
    }

    .insight-card {
        border-radius: 18px !important
    }

    .insight-thumb {
        height: 190px !important
    }

    .insight-body {
        padding: 1.25rem !important
    }

    .insight-title {
        font-size: 1.08rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.9rem !important
    }
}

@media (max-width:480px) {
    .site-header {
        padding: 0.65rem 0
    }

    .site-brand-logo {
        height: 30px
    }

    .header-actions {
        gap: 0.4rem
    }

    .lang-selector {
        padding: 0.25rem 0.35rem;
        font-size: 0.8rem
    }

    .btn-pill-white {
        padding: 0.5rem 0.85rem;
        font-size: 0.82rem
    }

    .hero-title-mockup {
        font-size: 2.05rem
    }

    .hero-actions-row {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem
    }

    .hero-actions-row .btn-pill-white,
    .hero-actions-row .btn-pill-translucent {
        width: 100%;
        justify-content: center
    }

    .metrics-grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .hero-3d-stage {
        height: 310px
    }

    .emblem-glow-container {
        width: 180px;
        height: 180px
    }

    .emblem-3d-render-img,
    .laptop-3d-render-img {
        width: 165px
    }

    .hero-emblem-aura,
    .hero-emblem-orbit-ring.ring-outer {
        width: 240px;
        height: 240px
    }

    .hero-emblem-orbit-ring.ring-inner {
        width: 190px;
        height: 190px
    }

    .orbital-stage {
        grid-template-columns: 1fr !important;
        gap: 0.6rem !important
    }

    .sector-slice-card {
        flex: 0 0 190px !important;
        height: 230px !important
    }
}

.modal-success-screen {
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
    animation: fadeInSuccess .4s cubic-bezier(.16, 1, .3, 1) forwards
}

@keyframes fadeInSuccess {
    from {
        opacity: 0;
        transform: scale(.92)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.success-icon-wrap {
    width: 86px;
    height: 86px;
    margin: 0 auto 1.5rem;
    background: rgba(16, 185, 129, .12);
    border: 2px solid rgba(16, 185, 129, .45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(16, 185, 129, .3);
    animation: pulseEmerald 2.5s infinite
}

@keyframes pulseEmerald {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .4)
    }

    70% {
        box-shadow: 0 0 0 18px rgba(16, 185, 129, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0)
    }
}

.vektra-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    background: rgba(15, 23, 42, .94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, .4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .6), 0 0 25px rgba(16, 185, 129, .2);
    border-radius: 14px;
    padding: 1rem 1.4rem;
    color: #f1f5f9;
    font-size: .95rem;
    font-weight: 500;
    max-width: 90vw;
    width: auto;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: all .35s cubic-bezier(.16, 1, .3, 1)
}

.vektra-toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.vektra-toast.error {
    border-color: rgba(239, 68, 68, .4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .6), 0 0 25px rgba(239, 68, 68, .2)
}

/* Legal & Cookie Banner Styles */
.legal-hero-wrap {
    padding: 8rem 0 3rem;
    position: relative;
    text-align: center
}

.legal-badge {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    background: rgba(0, 242, 254, .08);
    border: 1px solid rgba(0, 242, 254, .25);
    padding: .4rem 1.25rem;
    border-radius: 999px;
    margin-bottom: 1.25rem
}

.legal-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem
}

.legal-hero-meta {
    font-size: .95rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap
}

.legal-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 6rem
}

@media (max-width:991px) {
    .legal-layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }
}

.legal-sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.legal-menu-card {
    background: rgba(8, 14, 32, .75);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.legal-menu-title {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.legal-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.legal-menu-item-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem .9rem;
    border-radius: 10px;
    font-size: .92rem;
    color: #94a3b8;
    text-decoration: none;
    transition: all .2s ease
}

.legal-menu-item-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .04)
}

.legal-menu-item-link.active {
    color: #00f2fe;
    background: rgba(0, 242, 254, .08);
    border: 1px solid rgba(0, 242, 254, .25);
    font-weight: 600
}

.legal-content-card {
    background: rgba(8, 14, 32, .75);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #cbd5e1;
    font-size: 1.02rem;
    line-height: 1.8;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4)
}

@media (max-width:768px) {
    .legal-content-card {
        padding: 2rem 1.5rem
    }
}

.legal-content-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 2.5rem 0 1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    gap: .75rem
}

.legal-content-card h2:first-of-type {
    margin-top: 0
}

.legal-content-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #00f2fe;
    margin: 1.75rem 0 .75rem
}

.legal-content-card p {
    margin-bottom: 1.25rem
}

.legal-content-card ul,
.legal-content-card ol {
    margin: 0 0 1.5rem 1.5rem;
    padding: 0
}

.legal-content-card li {
    margin-bottom: .6rem
}

.legal-callout-box {
    background: rgba(0, 242, 254, .04);
    border-left: 4px solid var(--neon-cyan);
    border-radius: 0 14px 14px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
    color: #e2e8f0;
    font-size: .98rem
}

.legal-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 1.75rem 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: .92rem
}

.legal-table th {
    background: rgba(15, 23, 42, .9);
    color: #fff;
    font-weight: 600;
    padding: .9rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.legal-table td {
    padding: .85rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    color: #94a3b8
}

.cookie-pref-center {
    background: rgba(13, 20, 44, .85);
    border: 1px solid rgba(0, 242, 254, .2);
    border-radius: 18px;
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

.cookie-pref-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.cookie-pref-item:last-child {
    border-bottom: none
}

.cookie-pref-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .35rem
}

.cookie-pref-info p {
    font-size: .88rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #334155;
    transition: .3s ease;
    border-radius: 34px
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    transition: .3s ease;
    border-radius: 50%
}

input:checked+.cookie-slider {
    background-color: #00f2fe
}

input:checked+.cookie-slider:before {
    transform: translateX(24px);
    background-color: #04060d
}

.cookie-switch.disabled {
    opacity: .65;
    cursor: not-allowed
}

#vektra-cookie-consent-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 980px;
    background: rgba(8, 14, 34, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 254, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 242, 254, 0.2);
    border-radius: 20px;
    padding: 1.35rem 1.85rem;
    z-index: 999999;
    color: #e2e8f0;
    display: none;
    animation: slideUpCookie 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpCookie {
    from {
        opacity: 0;
        transform: translate(-50%, 40px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 768px) {
    #vektra-cookie-consent-bar {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        transform: none;
        padding: 1.25rem;
        border-radius: 16px;
    }

    @keyframes slideUpCookie {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}