/* =========================================
   Block: What you got
   ========================================= */

.kss-what-you-got {
    overflow: hidden;
    padding: 2rem 1rem;
}

.kss-what-you-got__card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 2.5rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Two-column layout --- */

.kss-what-you-got__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.kss-what-you-got__col-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
}

/* --- Left column: Checklist --- */

.kss-what-you-got__checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.kss-what-you-got__checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.kss-what-you-got__checklist li::before {
    content: '';
    display: inline-flex;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='11' stroke='%23f97316' stroke-width='1.5'/%3E%3Cpath d='M7.5 12l3 3 6-6' stroke='%23f97316' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* --- Right column: Benefit cards --- */

.kss-what-you-got__benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.kss-what-you-got__benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.kss-what-you-got__benefit-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kss-what-you-got__benefit-icon img {
    object-fit: contain;
}

.kss-what-you-got__benefit-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.35rem 0;
}

.kss-what-you-got__benefit-content p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* --- Divider --- */

.kss-what-you-got__divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 2rem 0 1.5rem;
}

/* --- Project duration text --- */

.kss-what-you-got__duration {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 1.5rem;
}

/* --- CTA Button --- */

.kss-what-you-got__cta {
    display: flex;
    justify-content: center;
}

.kss-what-you-got__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f97316;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.15s ease;
}

.kss-what-you-got__btn:hover {
    background: #ea6c00;
    transform: translateY(-1px);
}

/* --- Responsive --- */

@media (max-width: 900px) {
    .kss-what-you-got__card {
        padding: 2rem 2rem;
    }
}

@media (max-width: 768px) {
    .kss-what-you-got__card {
        padding: 1.75rem 1.5rem;
    }

    .kss-what-you-got__columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .kss-what-you-got__card {
        padding: 1.25rem 1rem;
    }

    .kss-what-you-got__btn {
        width: 100%;
        justify-content: center;
    }
}