/* --- SERVICE BOX BASE --- */
.starter-service-box { padding: 32px; border-radius: 12px; transition: all 0.3s ease; border-width: 1px; border-style: solid; display: flex; flex-direction: column; align-items: flex-start; position: relative; overflow: hidden; }
.starter-service-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 28px; z-index: 2; position: relative; }
.starter-service-title { font-size: 20px; font-weight: 700; margin: 0 0 12px; z-index: 2; position: relative; }
.starter-service-desc { margin: 0 0 24px; line-height: 1.625; font-size: 16px; z-index: 2; position: relative; }
.starter-service-link { display: inline-flex; align-items: center; font-weight: 600; font-size: 14px; text-decoration: none; margin-top: auto; z-index: 2; position: relative; }

.starter-service-box--clean { background-color: #ffffff; border-color: #f3f4f6; }
.starter-service-box--clean .starter-service-icon { background-color: #eef2ff; color: var(--st-blue); }
.starter-service-box--clean .starter-service-title { color: var(--st-gray-900); }
.starter-service-box--clean .starter-service-desc { color: var(--st-gray-600); }

.starter-service-box--dark { background-color: #1f2937; border-color: #374151; }
.starter-service-box--dark .starter-service-icon { background-color: #374151; color: #818cf8; }
.starter-service-box--dark .starter-service-title { color: white; }
.starter-service-box--dark .starter-service-desc { color: #9ca3af; }

.starter-service-box--glass { background: linear-gradient(180deg, rgba(20, 25, 35, 0.95) 0%, rgba(20, 25, 35, 0.85) 100%); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.08); padding: 40px 32px; border-radius: 20px; }
.starter-service-box--glass .starter-service-icon { background: transparent; color: #a3e635; }
.starter-service-box--glass .starter-service-title { color: white; text-transform: uppercase; }
.starter-service-box--glass .starter-service-desc { color: #94a3b8; }

.starter-service-box--image-card { background: #fff; border-radius: 32px; padding: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.04); border: 1px solid #f3f4f6; overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; }
.starter-service-box--image-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-5px); }
.starter-service-card-img-wrap { position: relative; border-radius: 24px; overflow: hidden; margin-bottom: 24px; aspect-ratio: 4/3; background: linear-gradient(135deg, #eff6ff, #f8fafc); }
.starter-service-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.starter-service-box--image-card:hover .starter-service-card-img-wrap img { transform: scale(1.1); }
.starter-service-card-btn { position: absolute; bottom: 16px; right: 16px; width: 48px; height: 48px; background-color: #0F172A; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); transition: all 0.3s ease; z-index: 10; text-decoration: none; }
.starter-service-box--image-card:hover .starter-service-card-btn { background-color: var(--st-blue); transform: scale(1.1); }
.starter-service-card-btn i { transition: transform 0.3s ease; transform: rotate(-45deg); }
.starter-service-box--image-card:hover .starter-service-card-btn i { transform: rotate(0deg); }
.starter-service-card-content { padding: 0 16px 16px; margin-top: auto; }
.starter-service-card-title { font-size: 24px; font-weight: 800; color: #0F172A; margin: 0 0 16px; text-transform: uppercase; line-height: 1.2; }
.starter-service-card-divider { height: 1px; width: 100%; background-color: #f3f4f6; margin-bottom: 16px; }
.starter-service-card-desc { font-size: 14px; color: #64748b; line-height: 1.6; font-weight: 500; margin: 0; }

/* --- STYLE: CREATIVE CARD (Modern Inset) --- */
.starter-service-box--creative-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 8px; /* Inner spacing for inset look */
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.starter-service-box--creative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Image Container */
.starter-service-creative-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #f9fafb;
}

.starter-service-creative-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.starter-service-box--creative-card:hover .starter-service-creative-img-wrap img {
    transform: scale(1.1);
}

/* Badge */
.starter-service-creative-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1f2937;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    z-index: 2;
}

/* Content Area */
.starter-service-creative-content {
    padding: 0 16px 24px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.starter-service-creative-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.2;
    transition: color 0.3s;
}

.starter-service-box--creative-card:hover .starter-service-creative-title {
    color: var(--st-blue, #4f46e5);
}

.starter-service-creative-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Footer */
.starter-service-creative-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f9fafb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.starter-service-creative-label {
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.starter-service-box--creative-card:hover .starter-service-creative-label {
    color: var(--st-blue, #4f46e5);
}

/* Circle Button */
.starter-service-creative-icon-btn {
    width: 40px;
    height: 40px;
    background: #f9fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    transition: all 0.3s ease;
    font-size: 16px;
}

.starter-service-box--creative-card:hover .starter-service-creative-icon-btn {
    background-color: var(--st-blue, #4f46e5);
    color: white;
    transform: rotate(45deg);
}

/* Full Link Overlay */
.starter-service-creative-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
}