/* ── Service cards ── */
.sd-service-card {
    border-radius: 0 12px 12px 0;
    padding: 22px 18px;
    height: 100%;
    transition: transform .3s, box-shadow .3s;
}

.sd-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
}

.sd-service-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sd-service-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-service-icon i {
    color: #fff;
    font-size: 18px;
}

.sd-service-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.sd-service-desc {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    opacity: .85;
}

/* ── Work cards ── */
.sd-work-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(0, 0, 0, .08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
    background: var(--surface-color, #fff);
}

.sd-work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .13);
}

.sd-work-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.sd-work-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.sd-work-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: .4px;
}

.sd-work-body {
    padding: 20px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sd-work-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sd-work-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.sd-work-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.sd-work-desc {
    font-size: 13.5px;
    line-height: 1.75;
    opacity: .82;
    flex: 1;
    margin-bottom: 14px;
}

.sd-work-tech {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--accent-color);
    font-weight: 500;
    border-top: 1px solid rgba(0, 0, 0, .07);
    padding-top: 12px;
    margin-top: auto;
}

.sd-work-tech i {
    font-size: 14px;
    flex-shrink: 0;
}

/* ── CTA ── */
.sd-cta-wrap {
    text-align: center;
    padding: 60px 20px;
}

.sd-cta-wrap h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
}

.sd-cta-wrap p {
    font-size: 15px;
    color: var(--default-color);
    max-width: 520px;
    margin: 0 auto 34px;
    opacity: .78;
    line-height: 1.7;
}

.sd-cta-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.sd-cta-fill {
    display: inline-block;
    background: #fb8600;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #fb8600;
    transition: background .25s, transform .2s;
}

.sd-cta-fill:hover {
    background: #e07800;
    border-color: #e07800;
    color: #fff;
    transform: translateY(-2px);
}

.sd-cta-outline {
    display: inline-block;
    background: transparent;
    color: #fb8600;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #fb8600;
    transition: background .25s, color .25s, transform .2s;
}

.sd-cta-outline:hover {
    background: #fb8600;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Fix double bullet on achievements-list when icon is used ── */
.sd-checklist li {
    list-style: none;
}

.sd-checklist li::before {
    display: none !important;
}

@media (max-width:576px) {
    .sd-cta-wrap h2 {
        font-size: 24px;
    }

    .sd-cta-fill,
    .sd-cta-outline {
        padding: 12px 28px;
        font-size: 14px;
    }
}