/**
 * ============================================
 * COMING SOON PAGE STYLES
 * ============================================
 */

body {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Animated background shapes */
.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
    color: white;
}

.shape-1 {
    top: 10%;
    left: 10%;
    font-size: 5rem;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 10%;
    font-size: 4rem;
    animation-delay: 3s;
}

.shape-3 {
    bottom: 10%;
    left: 20%;
    font-size: 6rem;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-30px) rotate(10deg); 
    }
}

/* Main Container */
.coming-soon-container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

/* FREE Badge */
.free-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-color), #2ecc71);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 15px 0;
    animation: pulse 2s infinite;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4), 0 0 0 2px var(--success-color);
}

.free-badge i {
    margin-right: 8px;
}

/* Free Features Box */
.free-features {
    background: #f0f8f5;
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border-left: 4px solid var(--success-color);
}

.free-features h3 {
    color: var(--success-color);
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.free-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.free-features li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.free-features li i {
    color: var(--success-color);
    margin-right: 8px;
}

/* Launch Date Badge */
.launch-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin: 20px 0 30px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Features Preview Grid */
.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Social Proof */
.social-proof {
    margin-top: 20px;
    padding: 15px;
    background: #fff9e6;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--warning-color);
}

.social-proof i {
    color: var(--warning-color);
    margin-right: 10px;
}

/* Signup Form */
.signup-form {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.form-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-lighter);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 40px 25px;
    }
    
    .free-badge {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}