/* Waitlist Page Styles */

.waitlist-container {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.waitlist-header {
    text-align: center;
    margin-bottom: 3rem;
}

.waitlist-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.waitlist-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.waitlist-count {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #23a5da 0%, #1a8ab8 100%);
    color: white;
    border-radius: 8px;
}

.count-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
}

.count-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Features List */
.waitlist-features {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.waitlist-features h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.features-list li:last-child {
    border-bottom: none;
}

/* Waitlist Form */
.waitlist-form-container {
    max-width: 500px;
    margin: 0 auto 3rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.waitlist-form-container button[type="submit"] {
    width: 100%;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

/* Error Message */
.error-message {
    padding: 1rem;
    background-color: #fff4f4;
    border: 2px solid var(--error-color);
    border-radius: 4px;
    color: var(--error-color);
    margin-top: 1rem;
}

/* Pricing Preview */
.pricing-preview {
    margin-top: 4rem;
}

.pricing-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: var(--primary-color);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .waitlist-header h1 {
        font-size: 2rem;
    }
    
    .count-number {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
