body {
    background-color: #020617;
    color: white;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E")
}

.cyber-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(51, 153, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(51, 153, 255, 0.03) 1px, transparent 1px);
    mask-image: radial-gradient(circle at 50% 0%, black 40%, transparent 100%);
    pointer-events: none
}

.ambient-glow {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(51, 153, 255, 0.08) 0%, transparent 60%);
    z-index: -2;
    pointer-events: none
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s cubic-bezier(0.16, 1, 0.3, 1)
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0)
}

.card-container {
    position: relative;
    border-radius: 40px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(51, 153, 255, 0.5) 0%, rgba(51, 153, 255, 0.1) 60%, transparent 100%);
    overflow: hidden
}

.card-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 100deg, #00ffff 180deg, #3399ff 220deg, #a855f7 260deg, transparent 360deg);
    animation: rotate-border 4s linear infinite;
    z-index: 0;
    opacity: 0.8
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.card-inner {
    background-color: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 39px;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.text-gradient-animated {
    background: linear-gradient(to right, #fff 20%, #3399ff 30%, #00ffff 70%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: textShimmer 4s linear infinite
}

h1 {
    letter-spacing: -0.03em
}

.text-balance {
    text-wrap: balance
}

.client-logo {
    width: auto;
    opacity: 0.7;
    transition: all .3s;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    max-width: 100%;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .logos-grid {
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .logos-grid {
        gap: 6rem;
    }
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1)
}

.btn-arrow {
    transition: transform .2s
}

.group:hover .btn-arrow {
    transform: translateX(4px)
}

.btn-shine {
    position: relative;
    overflow: hidden
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s
}

.btn-shine:hover::after {
    left: 100%
}

.spotlight-overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 20;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(51, 153, 255, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity .3s
}

.card-container:hover .spotlight-overlay {
    opacity: 1
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.input-label {
    font-size: 13px;
    font-weight: 500;
    color: #cbd5e1;
    margin-left: 2px
}

.input-label::after {
    content: " *";
    color: #3399ff
}

.input-field {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    transition: all .3s ease;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 200 200'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em
}

input.input-field,
textarea.input-field {
    background-image: none
}

.input-field:focus {
    border-color: #3399ff;
    background-color: rgba(51, 153, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(51, 153, 255, 0.1)
}

.input-field::placeholder {
    color: #64748b
}

select.input-field option {
    background-color: #0f172a;
    color: white
}