/* --- PROCESS STEPS BASE --- */
.starter-process-container {
    width: 100%;
    position: relative;
}

.starter-process-item {
    position: relative;
}

.starter-process-number {
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.starter-process-title {
    margin: 0 0 10px;
    font-weight: 700;
    color: #111827;
}

.starter-process-desc {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* --- STYLE 1: HORIZONTAL LINE --- */
.starter-process--horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

/* Connecting Line */
.starter-process--horizontal::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.starter-process--horizontal .starter-process-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.starter-process--horizontal .starter-process-icon-box {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.starter-process--horizontal .starter-process-item:hover .starter-process-icon-box {
    border-color: #4f46e5;
    color: #4f46e5;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px #eef2ff;
}

/* --- STYLE 2: ZIGZAG VISUAL --- */
.starter-process--zigzag {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.starter-process--zigzag .starter-process-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.starter-process--zigzag .starter-process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.starter-process--zigzag .starter-process-img-wrap {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.starter-process--zigzag .starter-process-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.starter-process--zigzag .starter-process-item:hover img {
    transform: scale(1.05);
}

.starter-process--zigzag .starter-process-content {
    flex: 1;
}

.starter-process--zigzag .starter-process-number {
    display: inline-block;
    font-size: 64px;
    color: #f3f4f6;
    margin-bottom: -20px;
    position: relative;
    z-index: -1;
}

.starter-process--zigzag .starter-process-title {
    font-size: 24px;
}

/* --- STYLE 3: ICON CARDS --- */
.starter-process--cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.starter-process--cards .starter-process-item {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.starter-process--cards .starter-process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    border-color: #4f46e5;
}

.starter-process--cards .starter-process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 80px;
    color: #f9fafb;
    z-index: 0;
    transition: color 0.3s ease;
}

.starter-process--cards .starter-process-item:hover .starter-process-number {
    color: #eef2ff;
}

.starter-process--cards .starter-process-content {
    position: relative;
    z-index: 1;
}

.starter-process--cards .starter-process-icon {
    font-size: 32px;
    color: #4f46e5;
    margin-bottom: 20px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .starter-process--horizontal {
        flex-direction: column;
        gap: 0;
    }
    .starter-process--horizontal::before {
        width: 2px;
        height: 100%;
        left: 24px; /* Center of icon box */
        top: 0;
    }
    .starter-process--horizontal .starter-process-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        margin-bottom: 30px;
        width: 100%;
    }
    .starter-process--horizontal .starter-process-icon-box {
        margin-right: 20px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .starter-process--zigzag .starter-process-item {
        flex-direction: column !important;
        text-align: center;
    }
}