:root {
    --primary: #008080;
    --primary-light: #2DD4BF;
    --secondary: #4A90E2;
    --bg-dark: #0F172A;
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent: #F43F5E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1E293B 0%, #0F172A 100%);
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.c1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.c2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.c3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 50%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.1); }
}

/* Container & Glass Card */
.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.logo svg {
    color: var(--primary-light);
    margin-bottom: 15px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: fillCircle 2s ease-in-out forwards;
}

@keyframes fillCircle {
    to { stroke-dashoffset: 0; }
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content */
.badge {
    display: inline-block;
    background: rgba(45, 212, 191, 0.1);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(45, 212, 191, 0.2);
}

h3 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-light);
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Progress Bar */
.progress-container {
    max-width: 400px;
    margin: 0 auto 40px;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 4px;
    animation: grow 2s ease-out;
}

@keyframes grow {
    from { width: 0; }
    to { width: 85%; }
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Services */
.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.service-item .icon {
    font-size: 1.25rem;
}

/* Footer / Form */
footer p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto 30px;
}

input[type="email"] {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 14px 20px;
    border-radius: 12px;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: var(--primary-light);
}

button {
    background: var(--primary-light);
    color: var(--bg-dark);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    background: #fff;
    transform: scale(1.05);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .glass-card {
        padding: 40px 20px;
        margin: 10px;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .services {
        flex-direction: column;
        gap: 15px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}
