:root {
    --bg-gradient: linear-gradient(135deg, #090e17 0%, #162032 100%);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-blue: #3b82f6;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(90px);
    z-index: -1;
    opacity: 0.4;
    animation: pulse 8s infinite alternate ease-in-out;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: #3b82f6;
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 450px;
    height: 450px;
    background: #8b5cf6;
    bottom: -20%;
    right: -10%;
    animation-delay: -4s;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    100% { transform: scale(1.2) translate(30px, 30px); opacity: 0.6; }
}

.glass-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px 30px 40px;
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255,255,255,0.1);
    max-width: 540px;
    width: 85%;
    text-align: center;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    overflow: hidden;
}

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

.loading-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, #3b82f6, #60a5fa, transparent);
    box-shadow: 0 0 10px #3b82f6;
    animation: loadingAnim 2s infinite ease-in-out;
}

@keyframes loadingAnim {
    0% { transform: translateX(-150%); }
    100% { transform: translateX(300%); }
}

.logo-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.logo-img {
    height: 95px;
    max-height: 95px;
    width: auto;
    animation: floatLogo 4s infinite ease-in-out;
}

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

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    box-shadow: 0 0 8px #60a5fa;
    animation: blink 1.5s infinite alternate;
}

@keyframes blink {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

h1 {
    font-weight: 800;
    font-size: 32px;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
}

.references-section {
    margin-bottom: 30px;
    width: 100%;
}

.ref-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 15px;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7.5px)); }
}

.slide-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.slide-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.client-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(70%);
    transition: all 0.3s ease;
}

.slide-item:hover .client-logo {
    filter: grayscale(0%) opacity(100%);
}

.slide-item span {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.slide-item:hover span {
    color: #f8fafc;
}

.contact-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.contact-heading {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .btn-group {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border-radius: 14px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.company-info {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    font-size: 12px;
    color: #64748b;
    line-height: 1.8;
    letter-spacing: 0.5px;
}