
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 48px;
}

.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card__description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-section {
    padding: 40px 0 60px;
}

.wizard {
    margin-bottom: 40px;
}

.wizard__steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 48px;
}

.wizard__steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.wizard__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.wizard__step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.wizard__step-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
}

.wizard__step.active .wizard__step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.wizard__step.completed .wizard__step-number {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.wizard__step.active .wizard__step-label,
.wizard__step.completed .wizard__step-label {
    color: var(--text-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.info-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.info-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.info-card__content {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-card__list {
    list-style: none;
    padding: 0;
}

.info-card__list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

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

.success-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--success-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.success-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.success-message {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.success-details {
    background-color: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.success-details__item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.success-details__item:last-child {
    border-bottom: none;
}

.success-details__label {
    font-weight: 600;
    color: var(--text-secondary);
}

.success-details__value {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 36px;
    }
    
    .hero__subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .wizard__steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .wizard__steps::before {
        display: none;
    }
    
    .wizard__step {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
    }
    
    .wizard__step-label {
        text-align: left;
    }
}
