.hyk-work-options {
    padding: 100px 0 67px;
}
.hyk-work-options .hyk-container {
    width: 100%;
    max-width: 1280px;
    padding: 0 40px;
    margin: 0 auto;
}
/* Header is centered within the 1200px zone */
.hyk-work-options__header {
    width: 100%;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hyk-work-options__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    line-height: 1.44;
    letter-spacing: 0;
    margin: 0 0 0 0;
}
span.hyk-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0 0 6px;
}

/* Cards: 1200px zone, each card exactly 589px, gap 22px */
.hyk-work-options__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 0 auto;
}

.hyk-option-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 2px 4px 0px #00000024, 0px 0px 2px 0px #0000001F;
}

.hyk-option-card__title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    line-height: 1.25;
    margin: 0 0 10px 0;
}

.hyk-option-card__desc {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Checklist inside option card */
.hyk-option-card__checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    padding: 0;
    margin: 0 0 30px;
    list-style-type: none;
}

.hyk-option-card__checklist li {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    position: relative;
    line-height: 16px;
    padding: 0 0 0 23px;
}
.hyk-option-card__checklist li::before {
    display: none;
}

.hyk-option-card__checklist li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 10px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMyAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjUxNjggMC44NTE1NjJMNC4xODM0MyA4LjE4NDlMMC44NTAwOTggNC44NTE1NiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIxLjciIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=") no-repeat center;
}

a.hyk-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    border: none;
    line-height: 1;
    align-self: flex-start;
    white-space: nowrap;
    text-decoration:none;
}
a.hyk-btn--ghost {
    background: #ffffff;
    color: #111827;
    border: 1px solid #111827;
    transition: all 0.3s ease 0s;
}
a.hyk-btn svg{
    margin-top: 3px;
}
a.hyk-btn svg path {
    transition: all 0.3s ease 0s;
}
a.hyk-btn:hover,
a.hyk-btn--ghost:hover {
    background: #272727;
    color: #fff;
}
a.hyk-btn:hover svg path {
    fill: #fff;
}
a.hyk-btn svg,
a.hyk-btn--ghost svg {
    transition: all ease-in-out 0.2s;
}
a.hyk-btn:hover svg,
a.hyk-btn--ghost:hover svg {
    transform: translateX(5px);
}
@media (max-width: 1024px) {
    .hyk-work-options {
        padding: 70px 0 67px;
    }
    .hyk-work-options .hyk-container {
        padding: 0 20px;
    }
    .hyk-work-options__cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .hyk-work-options {
        padding: 55px 0;
    }
    .hyk-work-options .hyk-container {
        padding: 0 15px;
    }
    .hyk-work-options__cards {
        grid-template-columns: 1fr;
    }
    .hyk-work-options__title {
        font-size: 32px;
    }
    .hyk-option-card {
        padding: 28px;
    }
}
