/* Get Started Page Specific Styles */

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.get-started-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.get-started-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.get-started-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Progress Steps */
.progress-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
    z-index: 1;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    height: 2px;
    background: var(--primary-purple);
    z-index: 2;
    width: 0%;
    transition: width 0.5s ease;
}

.progress-bar.step-1::after { width: 0%; }
.progress-bar.step-2::after { width: 33.33%; }
.progress-bar.step-3::after { width: 66.66%; }
.progress-bar.step-4::after { width: 100%; }

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.2);
}

.step.completed .step-number {
    background: var(--primary-purple);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Onboarding Form */
.onboarding-form {
    padding: 60px 0;
    background: var(--gray-100);
    min-height: 70vh;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-content h2 {
    color: var(--gray-900);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-content > p {
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.onboarding-form-content {
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.solution-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.solution-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.15);
}

.solution-card.selected {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05), rgba(147, 51, 234, 0.05));
}

.solution-card.selected::before {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.solution-icon svg {
    width: 30px;
    height: 30px;
}

.solution-card h3 {
    color: var(--gray-900);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.solution-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.solution-features span {
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* Customization Section */
.customization-section {
    margin-bottom: 2rem;
}

.customization-section h3 {
    color: var(--gray-900);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-item:hover {
    background: var(--gray-100);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 3px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-item {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-item:hover {
    border-color: var(--primary-purple);
}

.radio-item input[type="radio"] {
    display: none;
}

.radio-item input[type="radio"]:checked + .radio-mark + .radio-content {
    color: var(--primary-purple);
}

.radio-item input[type="radio"]:checked ~ * {
    border-color: var(--primary-purple);
}

.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.radio-item input[type="radio"]:checked + .radio-mark {
    border-color: var(--primary-purple);
}

.radio-item input[type="radio"]:checked + .radio-mark::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
}

.radio-content strong {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.radio-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Implementation Timeline */
.implementation-timeline {
    margin-bottom: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: var(--gray-900);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-deliverables span {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Pricing Estimate */
.pricing-estimate {
    margin-bottom: 2rem;
}

.pricing-estimate h3 {
    color: var(--gray-900);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.pricing-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-features {
    text-align: left;
}

.pricing-features p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.step-actions button,
.step-actions a {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-purple);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .get-started-hero h1 {
        font-size: 2rem;
    }

    .get-started-hero p {
        font-size: 1rem;
    }

    .progress-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .progress-bar::before,
    .progress-bar::after {
        display: none;
    }

    .step-content {
        padding: 2rem;
    }

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

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

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

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .step-actions {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .step-content {
        padding: 1.5rem;
    }

    .get-started-hero {
        padding: 100px 0 40px;
    }

    .onboarding-form {
        padding: 40px 0;
    }
}