.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-card-dark {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.text-gradient {
    background: linear-gradient(to right, #7B2FF7, #9D4EDD, #F72585);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-signature {
    background: linear-gradient(135deg, #7B2FF7, #9D4EDD, #F72585);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    min-height: max(884px, 100dvh);
}

.marquee-wrapper {
    background: linear-gradient(135deg, rgba(97, 0, 214, 0.02), rgba(132, 51, 196, 0.02));
    border-top: 1px solid rgba(157, 78, 221, 0.08);
    border-bottom: 1px solid rgba(157, 78, 221, 0.08);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.marquee-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(97, 0, 214, 0.03), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(247, 37, 133, 0.03), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.icon-gradient {
    background: linear-gradient(135deg, #7B2FF7, #9D4EDD, #F72585);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes slow-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-slow-spin {
    animation: slow-spin 8s linear infinite;
}

.loading-ring {
    border: 3px solid transparent;
    border-top-color: #7B2FF7;
    border-right-color: #9D4EDD;
    border-bottom-color: #F72585;
    border-radius: 50%;
}

/* Process Flow Styles */
.process-line-horizontal {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(to right, #7B2FF7, #F72585);
    z-index: 0;
    display: none;
    box-shadow: 0 0 15px rgba(123, 47, 247, 0.5);
}

@media (min-width: 1024px) {
    .process-line-horizontal {
        display: block;
    }
}

.process-line-vertical {
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, #7B2FF7, #F72585);
    z-index: 0;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(123, 47, 247, 0.5);
}

@media (min-width: 1024px) {
    .process-line-vertical {
        display: none;
    }
}

.milestone-glow {
    box-shadow: 0 0 30px rgba(123, 47, 247, 0.3);
}

/* Hide Google reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden !important;
}