.sd-starter-kit {
    width: min(100% - 32px, 1240px);
    margin: 0 auto;
    padding-bottom: 56px;
}

.sd-starter-kit__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 32px;
    align-items: center;
    margin: 12px 0 24px;
    padding: clamp(26px, 5vw, 56px);
    border-radius: 12px;
    background: #13283a;
    color: #fff;
}

.sd-starter-kit__hero h1 {
    max-width: 780px;
    margin: 4px 0 14px;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.sd-starter-kit__intro {
    max-width: 760px;
    margin: 0;
    color: #dce7ee;
    font-size: 17px;
}

.sd-starter-kit__eyebrow,
.sd-starter-kit__step {
    margin: 0;
    color: #3ea6d6;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sd-starter-kit__guide {
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 9px;
    padding: 20px;
    background: rgba(255, 255, 255, .07);
}

.sd-starter-kit__guide ol {
    margin: 10px 0;
    padding-left: 20px;
}

.sd-starter-kit__guide p {
    margin: 8px 0 0;
    color: #aad7ea;
    font-size: 13px;
}

.sd-starter-kit__jump {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 22px;
    padding: 4px 0 10px;
}

.sd-starter-kit__jump a {
    flex: 0 0 auto;
    border: 1px solid #c7d2da;
    border-radius: 999px;
    padding: 7px 12px;
    background: #fff;
    color: #30495c;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.sd-starter-kit__sections {
    display: grid;
    gap: 18px;
}

.sd-starter-kit__section {
    padding: 24px;
    border: 1px solid #dce4ea;
    border-radius: 10px;
    background: #fff;
}

.sd-starter-kit__section > header {
    display: grid;
    grid-template-columns: minmax(200px, .7fr) minmax(260px, 1.3fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 18px;
}

.sd-starter-kit__section h2 {
    margin: 2px 0 0;
    color: #13283a;
    font-size: 24px;
}

.sd-starter-kit__section > header > p {
    margin: 0;
    color: #5d6d7a;
    font-size: 14px;
}

.sd-starter-kit__choices {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.sd-starter-kit-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dce4ea;
    border-radius: 8px;
    background: #fff;
}

.sd-starter-kit-card__image {
    display: block;
    padding: 12px;
    background: #f6f8fa;
}

.sd-starter-kit-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.sd-starter-kit-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 14px;
}

.sd-starter-kit-card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.3;
}

.sd-starter-kit-card h3 a {
    color: #13283a;
    text-decoration: none;
}

.sd-starter-kit-card__price {
    margin: auto 0 12px;
    color: #0a6b4d;
    font-size: 15px;
    font-weight: 800;
}

.sd-starter-kit-card .button {
    width: 100%;
    border: 1px solid #0d5d8f;
    border-radius: 5px;
    padding: 9px 12px;
    background: #fff;
    color: #0d5d8f;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.sd-starter-kit-card .button:hover {
    background: #0d5d8f;
    color: #fff;
}

.sd-starter-kit__finish {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 26px;
    border-radius: 10px;
    background: #eaf3f7;
}

.sd-starter-kit__finish h2 {
    margin: 3px 0 5px;
    color: #13283a;
    font-size: 22px;
}

.sd-starter-kit__finish p {
    margin: 0;
}

.sd-starter-kit__finish .button {
    flex: 0 0 auto;
}

.sd-starter-kit__contract {
    margin: 16px 0 0;
    color: #71808c;
    font-size: 11px;
    text-align: center;
}

@media (max-width: 900px) {
    .sd-starter-kit__hero,
    .sd-starter-kit__section > header {
        grid-template-columns: 1fr;
    }

    .sd-starter-kit__choices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .sd-starter-kit {
        width: calc(100% - 20px);
    }

    .sd-starter-kit__hero,
    .sd-starter-kit__section {
        padding: 18px;
    }

    .sd-starter-kit__choices {
        grid-template-columns: 1fr;
    }

    .sd-starter-kit__finish {
        align-items: stretch;
        flex-direction: column;
    }
}