/* ================================================================
   LAYANAN SELLER MARKETPLACE
   Prefix: lsm-
   Shared hero: lk-hero (from layanan-kami.css)
   ================================================================ */

/* --------------------------------
   SHARED: Section Header
   -------------------------------- */
.lsm-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.lsm-section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700;
    color: var(--teal-600);
    background: var(--teal-50, #e6faf9);
    border: 1px solid var(--teal-600);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}
.lsm-section-badge i { font-size: 12px; }
.lsm-section-title {
    font-size: 32px; font-weight: 800;
    color: var(--teal-800, #0b5e5b);
    margin-bottom: 12px;
}
.lsm-section-desc {
    font-size: 15px; line-height: 1.7;
    color: var(--gray-500, #6c757d);
    max-width: 560px; margin: 0 auto;
}

/* --------------------------------
   SECTION 3: KEUNTUNGAN (6 cards)
   -------------------------------- */
.lsm-benefits {
    padding: 80px 0;
    background: #fff;
}
.lsm-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lsm-benefit-card {
    background: #fff;
    border: 1px solid var(--gray-200, #e2e8e8);
    border-radius: 18px;
    padding: 32px 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.lsm-benefit-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
    opacity: 0;
    transition: opacity 0.3s;
}
.lsm-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(44,197,189,0.1);
    border-color: var(--teal-200, #d0f4f1);
}
.lsm-benefit-card:hover::before { opacity: 1; }

.lsm-benefit-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--teal-50, #e6faf9);
    border: 2px solid var(--teal-100, #c3ebe8);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    color: var(--teal-600);
    transition: all 0.3s ease;
}
.lsm-benefit-card:hover .lsm-benefit-icon {
    background: var(--teal-500);
    color: #fff;
    border-color: var(--teal-500);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44,197,189,0.25);
}
.lsm-benefit-title {
    font-size: 16px; font-weight: 700;
    color: var(--teal-800, #0b5e5b);
    margin-bottom: 8px;
}
.lsm-benefit-desc {
    font-size: 14px; line-height: 1.65;
    color: var(--gray-500, #6c757d);
    margin-bottom: 0;
}

/* --------------------------------
   SECTION 4: CARA KERJA (4 steps)
   -------------------------------- */
.lsm-process {
    padding: 72px 0;
    background: var(--gray-50, #f8f9fa);
}
.lsm-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.lsm-step {
    text-align: center;
    flex: 1;
    max-width: 220px;
    position: relative;
}
.lsm-step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--teal-500);
    color: #fff;
    font-size: 14px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(44,197,189,0.3);
}
.lsm-step-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: #fff;
    border: 2px solid var(--teal-100, #c3ebe8);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--teal-600);
    transition: all 0.3s ease;
}
.lsm-step:hover .lsm-step-icon {
    background: var(--teal-500);
    color: #fff;
    border-color: var(--teal-500);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44,197,189,0.25);
}
.lsm-step-title {
    font-size: 15px; font-weight: 700;
    color: var(--teal-800, #0b5e5b);
    margin-bottom: 6px;
}
.lsm-step-desc {
    font-size: 13px; line-height: 1.6;
    color: var(--gray-500, #6c757d);
}
.lsm-step-connector {
    display: flex; align-items: center;
    padding-top: 56px;
    color: var(--teal-300, #7dd8d3);
    font-size: 14px;
    flex-shrink: 0;
    margin: 0 8px;
}

/* --------------------------------
   SECTION 5: FITUR SELLER (image-text rows)
   -------------------------------- */
.lsm-features {
    padding: 80px 0 40px;
    background: #fff;
}
.lsm-feat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}
.lsm-feat-row--reversed .lsm-feat-img { order: 2; }
.lsm-feat-row--reversed .lsm-feat-content { order: 1; }

/* Feature Image */
.lsm-feat-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.lsm-feat-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 20px;
    min-height: 280px;
    transition: transform 0.4s ease;
}
.lsm-feat-row:hover .lsm-feat-img img {
    transform: scale(1.03);
}

/* Feature Content */
.lsm-feat-content { padding: 8px 0; }
.lsm-feat-title {
    font-size: 26px; font-weight: 800;
    color: var(--teal-700, #1FA59E);
    margin-bottom: 4px;
    display: flex; align-items: center; gap: 10px;
}
.lsm-feat-title i { font-size: 22px; }
.lsm-feat-tagline {
    font-size: 15px; font-weight: 600;
    color: var(--teal-800, #0b5e5b);
    margin-bottom: 10px;
}
.lsm-feat-desc {
    font-size: 14px; line-height: 1.75;
    color: var(--gray-600, #495057);
    margin-bottom: 20px;
}
.lsm-feat-list {
    background: linear-gradient(120deg, var(--teal-50, #e6faf9), #fff);
    border-radius: 14px;
    padding: 20px 24px;
}
.lsm-feat-item {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray-700, #343a40);
    line-height: 1.5;
}
.lsm-feat-item:last-child { margin-bottom: 0; }
.lsm-feat-item i {
    color: var(--teal-500);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* btn-ea-outline-white → moved to core.css */

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 991.98px) {

    .lsm-benefits-grid { grid-template-columns: repeat(2, 1fr); }

    .lsm-feat-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .lsm-feat-row--reversed .lsm-feat-img { order: 0; }
    .lsm-feat-row--reversed .lsm-feat-content { order: 0; }
    .lsm-feat-img img { min-height: 220px; max-height: 300px; }
}

/* Mobile */
@media (max-width: 575.98px) {
    .lsm-section-title { font-size: 24px; }
    .lsm-section-desc { font-size: 14px; }

    /* Benefits */
    .lsm-benefits { padding: 48px 0; }
    .lsm-benefits-grid { grid-template-columns: 1fr; gap: 16px; }
    .lsm-benefit-card { padding: 24px 20px; }
    .lsm-benefit-icon { width: 48px; height: 48px; border-radius: 12px; font-size: 20px; }
    .lsm-benefit-title { font-size: 15px; }
    .lsm-benefit-desc { font-size: 13px; }

    /* Process */
    .lsm-process { padding: 48px 0; }
    .lsm-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: relative;
        padding-left: 48px;
    }
    .lsm-steps::before {
        content: '';
        position: absolute;
        left: 22px; top: 24px; bottom: 24px;
        width: 3px;
        background: linear-gradient(180deg, var(--teal-500), var(--teal-300), var(--teal-500));
        border-radius: 4px;
    }
    .lsm-step {
        max-width: 100%;
        text-align: left;
        position: relative;
        padding: 12px 0 28px;
    }
    .lsm-step:last-child { padding-bottom: 0; }
    .lsm-step-num {
        position: absolute;
        left: -48px; top: 12px;
        width: 40px; height: 40px;
        font-size: 16px;
        z-index: 2;
        border: 3px solid var(--gray-50, #f8f9fa);
        box-shadow: 0 2px 12px rgba(44,197,189,0.3);
    }
    .lsm-step-icon {
        width: 48px; height: 48px;
        border-radius: 12px;
        margin: 0 0 10px;
        font-size: 20px;
    }
    .lsm-step-title { text-align: left; }
    .lsm-step-desc { text-align: left; }
    .lsm-step-connector { display: none; }

    /* Features */
    .lsm-features { padding: 48px 0 24px; }
    .lsm-feat-row { gap: 20px; margin-bottom: 40px; }
    .lsm-feat-title { font-size: 22px; }
    .lsm-feat-title i { font-size: 18px; }
    .lsm-feat-list { padding: 16px 18px; }
    .lsm-feat-img img { min-height: 180px; }
    
}
