/* Early Adopters Section Styles */

.early-adopters-banner {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 12px;
}

.early-adopters-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.banner-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

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

.banner-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.banner-text p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

.banner-counter {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.counter-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Early Adopter Benefits */
.early-adopter-benefits {
    padding: 3rem 0;
    background: #f8f9fa;
    margin: 2rem 0;
    border-radius: 12px;
}

.early-adopter-benefits h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    color: #0066ff;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Early Adopter Form */
.early-adopter-form {
    padding: 3rem 0;
    margin: 2rem 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-content > p {
    color: #666;
    margin-bottom: 2rem;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    width: 100%;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Visual Cards */
.form-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.visual-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.visual-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.visual-card p {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
}

/* Testimonials Placeholder */
.testimonials {
    padding: 3rem 0;
}

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

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card.placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    transition: all 0.3s ease;
}

.testimonial-card.placeholder:hover {
    border-color: #0066ff;
    background: #f0f7ff;
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.placeholder-text {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.placeholder-label {
    display: block;
    font-size: 0.9rem;
    color: #0066ff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .early-adopters-banner .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-text h2 {
        font-size: 1.4rem;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .early-adopters-banner {
        padding: 2rem 0;
    }

    .banner-icon {
        font-size: 2rem;
    }

    .banner-text h2 {
        font-size: 1.2rem;
    }

    .banner-text p {
        font-size: 0.9rem;
    }

    .early-adopter-benefits h2 {
        font-size: 1.5rem;
    }

    .form-content h2 {
        font-size: 1.4rem;
    }
}
