.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
}

.card-header h2 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.card-header p {
    color: #666;
    font-size: 0.95rem;
}

.benefits {
    display: flex;
    gap: 25px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
}

.benefit-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
}

/* ========== STEPS INDICATOR ========== */
.steps-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    gap: 10px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step-number.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.step-number.completed {
    background: #28a745;
    color: white;
}

.step-number.inactive {
    background: #e0e0e0;
    color: #999;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
}

.step-label.active {
    color: #333;
    font-weight: 500;
}

.step-connector {
    width: 60px;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
}

.step-connector.completed {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* ========== FORM STYLES ========== */
.form-container {
    padding: 40px;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
}

.form-title h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-title p {
    color: #666;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
}

.form-group .error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-group select {
    cursor: pointer;
    background: white;
}

.btn-submit {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    padding: 14px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ========== CALENDLY FIXES ========== */
.calendly-wrapper {
    position: relative;
    background: #fff;
}

.calendly-inline-widget,
.calendly-container {
    min-width: 100% !important;
    width: 100% !important;
    height: 680px !important;
    border: none !important;
    background: transparent !important;
}

.calendly-inline-widget iframe {
    border: none !important;
    background: #fff !important;
}

.calendly-badge-widget {
    display: none !important;
}

/* ========== LOADING ========== */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: #888;
    background: #fff;
}

.spinner {
    width: 45px;
    height: 45px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== SUCCESS ========== */
.success-message {
    text-align: center;
    padding: 80px 30px;
    background: linear-gradient(to bottom, #f0fff4, #fff);
}

.success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 45px;
    color: white;
    box-shadow: 0 10px 40px rgba(40, 167, 69, 0.3);
}

.success-message h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.success-message p {
    color: #666;
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* ========== FOOTER ========== */
.footer {
    text-align: center;
    color: white;
    margin-top: 25px;
    opacity: 0.85;
    font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .header h1 {
        font-size: 1.7rem;
    }

    .header p {
        font-size: 1rem;
    }

    .card-header {
        padding: 20px;
    }

    .card-header h2 {
        font-size: 1.2rem;
    }

    .benefits {
        flex-direction: column;
        gap: 10px;
    }

    .form-container {
        padding: 25px 20px;
    }

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

    .steps-indicator {
        padding: 15px;
        gap: 5px;
    }

    .step-label {
        display: none;
    }

    .step-connector {
        width: 30px;
    }

    .calendly-inline-widget,
    .calendly-container {
        height: 750px !important;
    }
}
