.sk-cta {
background: var(--sk-navy);
border-radius: 14px;
padding: 18px 22px;
margin: 28px 0;
}
.sk-cta__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.sk-cta__label {
font-size: 11px;
font-weight: 700;
color: rgba(255,255,255,0.6);
letter-spacing: 0.1em;
text-transform: uppercase;
}
.sk-cta__text {
font-family: var(--sk-font-head);
font-weight: 700;
font-size: 15px;
color: #fff;
margin-top: 4px;
line-height: 1.4;
}
.sk-cta__btn {
display: inline-block;
padding: 10px 18px;
border-radius: 99px;
background: var(--sk-coral);
color: #fff;
font-size: 13px;
font-weight: 700;
text-decoration: none !important;
white-space: nowrap;
transition: opacity 180ms ease;
flex-shrink: 0;
}
.sk-cta__btn:hover {
opacity: 0.85;
color: #fff;
}
@media (max-width: 600px) {
.sk-cta__inner { flex-direction: column; align-items: flex-start; }
.sk-cta__btn { align-self: flex-end; }
} .sk-steps {
margin: 32px 0;
display: flex;
flex-direction: column;
gap: 0;
}
.sk-step {
display: grid;
grid-template-columns: 48px 1fr;
gap: 0 16px;
position: relative;
} .sk-step:not(:last-child) .sk-step__line {
position: absolute;
left: 23px;
top: 48px;
bottom: 0;
width: 2px;
background: var(--sk-line, #e5e7ef);
}
.sk-step__num {
width: 48px;
height: 48px;
border-radius: 50%;
background: var(--sk-navy);
color: #fff;
font-family: var(--sk-font-head);
font-size: 18px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
position: relative;
z-index: 1;
}
.sk-step__body {
padding: 10px 0 24px;
}
.sk-step__label {
font-family: var(--sk-font-head);
font-size: 14px;
font-weight: 700;
color: var(--sk-coral);
margin-bottom: 4px;
line-height: 1;
}
.sk-step__content {
font-size: 14px;
line-height: 1.8;
color: var(--sk-ink, #1b2340);
} .sk-profile {
background: #fff;
border-radius: var(--sk-radius-card, 12px);
border: 1px solid var(--sk-line, #e5e7ef);
padding: 24px;
margin: 32px 0;
display: grid;
grid-template-columns: 80px 1fr;
gap: 20px;
align-items: start;
}
.sk-profile__avatar {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--sk-cream-2, #f3ede0);
}
.sk-profile__avatar-placeholder {
width: 80px;
height: 80px;
border-radius: 50%;
background: var(--sk-navy);
display: flex;
align-items: center;
justify-content: center;
font-size: 36px;
}
.sk-profile__name {
font-family: var(--sk-font-head);
font-size: 18px;
font-weight: 700;
color: var(--sk-navy);
margin: 0 0 4px;
}
.sk-profile__role {
font-size: 12px;
color: var(--sk-coral);
font-weight: 700;
margin-bottom: 8px;
}
.sk-profile__bio {
font-size: 13px;
line-height: 1.8;
color: #555;
margin-bottom: 12px;
}
.sk-profile__stats {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.sk-profile__stat {
text-align: center;
}
.sk-profile__stat-num {
font-family: var(--sk-font-head);
font-size: 22px;
font-weight: 700;
color: var(--sk-navy);
line-height: 1;
}
.sk-profile__stat-label {
font-size: 10px;
color: #888;
margin-top: 2px;
}
@media (max-width: 600px) {
.sk-profile {
grid-template-columns: 1fr;
text-align: center;
}
.sk-profile__avatar,
.sk-profile__avatar-placeholder {
margin: 0 auto;
}
.sk-profile__stats { justify-content: center; }
}