/* Cursor Triangle Trail */
.cursor-triangle {
    position: fixed;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid rgba(255, 255, 255, 0.9);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: triangleFade 1s ease-out forwards;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

@keyframes triangleFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(45deg) scale(0.3);
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
    }
}

.dark .cursor-triangle {
    border-bottom-color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

/* Click Circle Animation */
.cursor-click-circle {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: clickCircleExpand 1s ease-out forwards;
}

@keyframes clickCircleExpand {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.3);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.6);
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2), 0 0 10px rgba(255, 255, 255, 0.1), inset 0 0 5px rgba(255, 255, 255, 0.1);
    }
}

.dark .cursor-click-circle {
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Smooth Page Transitions */
body {
    transition: background-color 0.3s ease;
}

/* Enhanced Hover Effects for Cards */
.bento-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Animated Gradient Text */
@keyframes gradient-x {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animate-gradient-x {
    animation: gradient-x 3s ease infinite;
}

/* Floating Animation for Hero Image */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pulse Glow Effect */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3), 0 0 40px rgba(37, 99, 235, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.5), 0 0 60px rgba(37, 99, 235, 0.2);
    }
}

/* Smooth Link Hover */
a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Button Hover */
button, .hoverable {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover, .hoverable:hover {
    filter: brightness(1.1);
}

/* Stagger Animation for Project Grid */
.project-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.project-item:nth-child(1) { animation-delay: 0.1s; }
.project-item:nth-child(2) { animation-delay: 0.2s; }
.project-item:nth-child(3) { animation-delay: 0.3s; }
.project-item:nth-child(4) { animation-delay: 0.4s; }

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

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Navigation Hover */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #4f46e5);
    transition: width 0.3s ease;
}

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

/* Glowing Border Animation */
@keyframes border-glow {
    0%, 100% {
        border-color: rgba(37, 99, 235, 0.3);
        box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
    }
    50% {
        border-color: rgba(37, 99, 235, 0.6);
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    }
}

/* Text Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.text-shimmer {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.1) 100%);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

/* Smooth Image Load */
img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

/* Enhanced Shadow on Scroll */
.shadow-scroll {
    transition: box-shadow 0.3s ease;
}

.shadow-scroll.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dark .shadow-scroll.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Floating Particles */
.floating-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    bottom: -10px;
    animation: floatUp 5s ease-in infinite;
    opacity: 0;
}

/* GSAP Split Text Styles */
.split-char {
    display: inline-block;
    transform-origin: center;
    will-change: transform, opacity;
    perspective: 1000px;
}

.split-text-rivalz .split-char,
.split-text-devcore .split-char {
    display: inline-block;
    transform-style: preserve-3d;
}

/* 3D Robot Canvas */
#robot-canvas {
    cursor: pointer;
    transition: all 0.3s ease;
}

#robot-canvas:hover {
    transform: scale(1.02);
}

/* Spline 3D Model Styles */
.spline-container {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.spline-iframe {
    background: transparent !important;
    border: none;
    pointer-events: auto;
    mix-blend-mode: normal;
}

/* Hide Spline watermark with larger overlay */
.spline-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 80px;
    background: rgb(248, 250, 252);
    pointer-events: none;
    z-index: 10;
}

.dark .spline-container::after {
    background: rgb(0, 0, 0);
}

/* Additional overlay for better coverage */
.spline-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 100px;
    background: linear-gradient(to top, 
        rgb(248, 250, 252) 0%, 
        rgb(248, 250, 252) 50%,
        transparent 100%);
    pointer-events: none;
    z-index: 9;
}

.dark .spline-container::before {
    background: linear-gradient(to top, 
        rgb(0, 0, 0) 0%, 
        rgb(0, 0, 0) 50%,
        transparent 100%);
}

/* Stop zoom animation and make stable */
.spline-container canvas {
    animation: none !important;
    transform: none !important;
}

.spline-container iframe {
    transform: scale(1) !important;
    animation: none !important;
}

/* 3D R Logo Styles */
#r-logo-container {
    animation: float 6s ease-in-out infinite;
}

#r-logo-text {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

#r-logo-container:hover #r-logo-text {
    filter: drop-shadow(0 30px 60px rgba(37, 99, 235, 0.6));
    transform: scale(1.05);
}

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

/* 3D Robot Styles */
.hero-robot-container {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    animation: float 6s ease-in-out infinite;
}

.robot-model {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

#robot-svg {
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.4)) drop-shadow(0 0 20px rgba(37, 99, 235, 0.2));
    transition: all 0.3s ease;
}

.hero-robot-container:hover #robot-svg {
    filter: drop-shadow(0 30px 60px rgba(37, 99, 235, 0.6)) drop-shadow(0 0 30px rgba(37, 99, 235, 0.4));
}

/* Robot Legs Animation */
.robot-leg {
    animation: legFloat 3s ease-in-out infinite;
    transform-origin: center;
}

.leg-1 { animation-delay: 0s; }
.leg-2 { animation-delay: 0.5s; }
.leg-3 { animation-delay: 1s; }
.leg-4 { animation-delay: 1.5s; }
.leg-5 { animation-delay: 2s; }
.leg-6 { animation-delay: 2.5s; }

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

.hero-robot-container:hover .robot-leg {
    animation: legWave 1.5s ease-in-out infinite;
}

@keyframes legWave {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(2deg);
    }
    75% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    50% {
        transform: translateY(-15px) rotateZ(2deg);
    }
}

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

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Project Card Hover */
.project-card {
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
}

.project-card:hover::before {
    width: 300%;
    height: 300%;
}

/* Glowing Text Effect */
.glow-text {
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.5),
                 0 0 20px rgba(37, 99, 235, 0.3),
                 0 0 30px rgba(37, 99, 235, 0.2);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(37, 99, 235, 0.5),
                     0 0 20px rgba(37, 99, 235, 0.3),
                     0 0 30px rgba(37, 99, 235, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(37, 99, 235, 0.8),
                     0 0 30px rgba(37, 99, 235, 0.5),
                     0 0 40px rgba(37, 99, 235, 0.3);
    }
}

/* Smooth Button Transitions */
button, a {
    position: relative;
    overflow: hidden;
}

/* Loading Animation */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Dock Styles */
.dock-outer {
    margin: 0 0.5rem;
    display: flex;
    max-width: 100%;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.dock-panel {
    position: relative;
    bottom: 0.5rem;
    display: flex;
    align-items: flex-end;
    width: fit-content;
    gap: 1rem;
    border-radius: 1rem;
    background-color: rgba(6, 0, 16, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid #222;
    padding: 0.5rem 0.5rem 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dock-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(6, 0, 16, 0.6);
    border: 1px solid #333;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    outline: none;
    width: 48px;
    height: 48px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dock-item:hover {
    transform: translateY(-10px) scale(1.2);
    background-color: rgba(37, 99, 235, 0.2);
    border-color: #2563eb;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.dock-item:hover .dock-label {
    opacity: 1;
    visibility: visible;
}

.dock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.dock-label {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 50%;
    width: fit-content;
    white-space: pre;
    border-radius: 0.375rem;
    border: 1px solid #333;
    background-color: rgba(6, 0, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: #fff;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
}

.bg-grid-pattern {
    background-image: url("./images/wave-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-wave-pattern {
    background-image: url("./images/wave-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.4) contrast(1.2);
}

.dark .bg-wave-pattern {
    filter: brightness(0.3) contrast(1.3);
    opacity: 0.4 !important;
}

.preserve-3d { transform-style: preserve-3d; }
.perspective-1000 { perspective: 1000px; }
.backface-hidden { backface-visibility: hidden; }
.parallax-img { will-change: transform; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

#preloader {
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.6s;
}
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* Toast Animation */
.toast-enter {
    transform: translateY(100%) scale(0.9);
    opacity: 0;
}
.toast-enter-active {
    transform: translateY(0) scale(1);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast-exit {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.toast-exit-active {
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

*:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 4px;
}

/* Filter Button Active State */
.filter-btn.active {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}
.dark .filter-btn.active {
    color: white;
}

/* Spotlight & Hover Effects */
.spotlight-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}
.dark .spotlight-card:hover {
    box-shadow: 0 20px 40px -10px rgba(255,255,255,0.05);
}
.spotlight-overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(37, 99, 235, 0.1), transparent 40%);
    z-index: 20;
}
.spotlight-card:hover .spotlight-overlay {
    opacity: 1;
}

/* Modern Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px) scale(0.95);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, filter, transform;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

/* Stagger Delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Magnetic Button Effect Base Class */
.magnetic-btn {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ===== HERO SECTION ANIMATIONS ===== */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeReveal {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroHeadingReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes profileImageEnter {
    from {
        opacity: 0;
        transform: scale(0.85) rotateY(20deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateY(0);
        filter: blur(0);
    }
}

@keyframes circleRotateIn {
    from {
        opacity: 0;
        transform: rotate(90deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(37, 99, 235, 0.6));
    }
}

@keyframes buttonScaleIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero Badge Animation */
.hero-badge {
    animation: badgeReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.1s;
}

/* Hero Heading Lines Animation */
.hero-heading-line {
    animation: heroHeadingReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-heading-line:nth-child(1) { animation-delay: 0.2s; }
.hero-heading-line:nth-child(2) { animation-delay: 0.35s; }
.hero-heading-line:nth-child(3) { animation-delay: 0.5s; }

/* Hero Paragraph Animation */
.hero-description {
    animation: heroFadeInUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.65s;
    opacity: 0;
}

/* Hero Buttons Container Animation */
.hero-buttons {
    animation: heroFadeInUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

/* Hero Image Container Animation */
.hero-image-container {
    animation: profileImageEnter 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
    perspective: 1000px;
}

/* Circular Elements Animation */
.hero-circle-outer {
    animation: circleRotateIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-circle-middle {
    animation: circleRotateIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.6s;
    opacity: 0;
    animation-direction: reverse;
}

/* Profile Image Glow Effect */
.hero-image-glow {
    animation: glowPulse 3s ease-in-out infinite;
    animation-delay: 1.4s;
}

/* Hero Profile Image */
.hero-profile-img {
    animation: profileImageEnter 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.4s;
}
.project-card img{
transition: opacity 0.5s ease, transform 0.7s ease;
}

/* === ORDER FORM PAGE === */
.order-form-page {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    overflow-y: auto;
}

.order-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 30, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.order-form-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    padding: 40px 20px;
    animation: slideInFromBottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.order-form-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10002;
}

.order-form-close:hover {
    background: rgba(255, 85, 85, 0.3);
    border-color: rgba(255, 85, 85, 0.5);
    transform: scale(1.1) rotate(90deg);
}

.order-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.order-form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.3);
}

.order-form-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.order-form-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.order-form-content {
    max-width: 1200px;
    margin: 0 auto;
}

.order-form {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.order-form-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    color: white;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-label i {
    color: #a855f7;
    font-size: 18px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Package Options */
.package-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.package-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.3);
}

.package-option input[type="radio"]:checked ~ label,
.package-option:has(input[type="radio"]:checked) {
    background: rgba(168, 85, 247, 0.15);
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.package-radio {
    display: flex;
    align-items: center;
}

.package-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #a855f7;
}

.package-info h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
}

.package-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0 0 10px;
}

.package-price {
    color: #a855f7;
    font-size: 24px;
    font-weight: 700;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    width: fit-content;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    color: #a855f7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: rgba(168, 85, 247, 0.3);
    transform: scale(1.05);
}

.quantity-input {
    width: 80px;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.quantity-input:focus {
    outline: none;
}

/* Delivery Options */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-option {
    position: relative;
}

.delivery-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.delivery-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-option:hover label {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.3);
}

.delivery-option input[type="radio"]:checked + label {
    background: rgba(168, 85, 247, 0.15);
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.delivery-name {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.delivery-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.delivery-price {
    color: #a855f7;
    font-weight: 600;
    font-size: 15px;
}

/* Add-on Options */
.addon-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addon-option {
    position: relative;
}

.addon-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.addon-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.addon-option:hover label {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.3);
}

.addon-option input[type="checkbox"]:checked + label {
    background: rgba(168, 85, 247, 0.15);
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.addon-name {
    color: white;
    font-size: 14px;
}

.addon-price {
    color: #a855f7;
    font-weight: 600;
    font-size: 14px;
}

/* Order Summary */
.order-summary {
    position: sticky;
    top: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.order-summary-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-summary-title i {
    color: #a855f7;
}

.order-summary-service {
    padding: 20px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-summary-service span:first-child {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.order-summary-service span:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.order-summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.summary-item span:last-child {
    font-weight: 600;
    color: white;
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
}

.order-summary-total span:first-child {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.order-summary-total span:last-child {
    color: #a855f7;
    font-size: 28px;
    font-weight: 700;
}

.order-summary-note {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
}

.order-summary-note i {
    color: #3b82f6;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.order-summary-note p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.order-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
    margin-bottom: 20px;
}

.order-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.4);
}

.order-guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
}

.order-guarantee i {
    color: #22c55e;
    font-size: 24px;
    flex-shrink: 0;
}

.order-guarantee strong {
    color: white;
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
}

.order-guarantee p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .order-form {
        grid-template-columns: 1fr;
    }
    
    .order-form-right {
        order: -1;
    }
    
    .order-summary {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .order-form-container {
        padding: 20px 15px;
    }
    
    .order-form-title {
        font-size: 32px;
    }
    
    .package-options {
        grid-template-columns: 1fr;
    }
    
    .order-form-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}


/* ===================================================
   NORISK-INSPIRED MOD LAUNCHER SECTION
   =================================================== */

/* Animated orbs */
.norisk-orb {
    position: absolute;
    border-radius: 50%;
    animation: noriskOrbFloat 8s ease-in-out infinite;
    pointer-events: none;
}
.norisk-orb-2 { animation-delay: -3s; animation-duration: 10s; }
.norisk-orb-3 { animation-delay: -5s; animation-duration: 12s; }

@keyframes noriskOrbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Card wrapper with 3D perspective */
.norisk-card-wrapper {
    position: relative;
    perspective: 1200px;
    width: 100%;
    max-width: 480px;
}

/* Glow behind the card */
.norisk-card-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.35) 0%, rgba(79, 70, 229, 0.15) 50%, transparent 75%);
    border-radius: 32px;
    filter: blur(20px);
    animation: noriskGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes noriskGlowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Main UI card */
.norisk-ui-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, rgba(20, 10, 40, 0.95) 0%, rgba(12, 8, 30, 0.98) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(124, 58, 237, 0.15),
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: rotateY(-8deg) rotateX(4deg);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    animation: noriskFloat 6s ease-in-out infinite;
    will-change: transform;
    cursor: pointer;
}

.norisk-ui-card:hover {
    box-shadow:
        0 0 0 1px rgba(124, 58, 237, 0.5),
        0 35px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(124, 58, 237, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: rotateY(-4deg) rotateX(2deg) scale(1.02) !important;
}

@keyframes noriskFloat {
    0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0px); }
    50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-14px); }
}

/* Depth layer (parallax background) */
.norisk-depth-layer {
    position: absolute;
    inset: 10px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(79, 70, 229, 0.04) 100%);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    z-index: 1;
    transform: translateZ(-20px) scale(1.04);
    pointer-events: none;
    animation: noriskFloat 6s ease-in-out infinite;
    animation-delay: 0.3s;
}

/* Card Header */
.norisk-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.norisk-traffic-lights {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.norisk-traffic-lights span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.norisk-card-title-bar {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.02em;
}

.norisk-header-icons {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* Card Body */
.norisk-card-body {
    display: flex;
    height: 320px;
}

/* Sidebar */
.norisk-sidebar {
    width: 80px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.norisk-sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    cursor: pointer;
    border-radius: 8px;
    margin: 0 6px;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
}

.norisk-sidebar-item i {
    font-size: 16px;
}

.norisk-sidebar-item:hover {
    background: rgba(124, 58, 237, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.norisk-sidebar-item.active {
    background: rgba(124, 58, 237, 0.25);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.norisk-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 6px 10px;
}

/* Main content area */
.norisk-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 10px;
    overflow: hidden;
}

/* Search bar */
.norisk-search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    flex-shrink: 0;
}

.norisk-search-badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 10px;
}

/* Mod list */
.norisk-mod-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    overflow: hidden;
}

.norisk-mod-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.norisk-mod-item:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
}

.norisk-mod-installed {
    border-color: rgba(124, 58, 237, 0.15);
}

.norisk-mod-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.norisk-mod-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.norisk-mod-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.norisk-mod-version {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
}

.norisk-mod-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    flex-shrink: 0;
}

.norisk-mod-status.installed {
    color: #34d399;
}

.norisk-mod-status.installing {
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.norisk-progress-bar {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    display: block;
}

.norisk-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    border-radius: 2px;
    display: block;
    animation: noriskProgressPulse 2s ease-in-out infinite;
}

@keyframes noriskProgressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.norisk-install-btn {
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(79, 70, 229, 0.3));
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 6px;
    color: #a78bfa;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.norisk-install-btn:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(79, 70, 229, 0.5));
    color: #fff;
}

/* Status bar */
.norisk-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== RIGHT GLASS CARD ===== */
.norisk-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 460px;
    width: 100%;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(124, 58, 237, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Animated glow border */
.norisk-glass-glow-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(79, 70, 229, 0.2), rgba(124, 58, 237, 0.1), rgba(79, 70, 229, 0.4));
    background-size: 300% 300%;
    animation: noriskBorderGlow 4s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

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

/* Badge */
.norisk-glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #a78bfa;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.norisk-badge-dot {
    width: 7px;
    height: 7px;
    background: #a78bfa;
    border-radius: 50%;
    animation: noriskBadgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(167, 139, 250, 0.6);
}

@keyframes noriskBadgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Title */
.norisk-glass-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.norisk-title-accent {
    background: linear-gradient(135deg, #a78bfa 0%, #818cf8 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: noriskTitleShimmer 3s linear infinite;
}

@keyframes noriskTitleShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Description */
.norisk-glass-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Feature list */
.norisk-feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.norisk-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.norisk-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(79, 70, 229, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #a78bfa;
    font-size: 16px;
}

.norisk-feature-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2px;
}

.norisk-feature-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* CTA row */
.norisk-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.norisk-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
    border: 1px solid rgba(124, 58, 237, 0.5);
}

.norisk-cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.5);
    filter: brightness(1.1);
}

.norisk-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.norisk-cta-secondary:hover {
    color: #a78bfa;
    gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .norisk-ui-card {
        transform: rotateY(0deg) rotateX(0deg);
        animation: noriskFloatMobile 6s ease-in-out infinite;
    }

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

    .norisk-ui-card:hover {
        transform: scale(1.01) !important;
    }

    .norisk-glass-card {
        padding: 28px 22px;
    }

    .norisk-card-body {
        height: 280px;
    }

    .norisk-sidebar {
        width: 60px;
    }

    .norisk-sidebar-item span {
        display: none;
    }
}
