.pain-points {
    background: var(--site-surface-soft);
    padding-top: 0;
    padding-bottom: 0;
}

.pain-points__image-frame {
    width: min(100%, 940px);
    margin: -20px auto 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 248, 245, 0.96) 0%, rgba(255, 244, 240, 0.98) 100%);
    box-shadow: 0 24px 54px rgba(124, 87, 76, 0.1);
}

.pain-points__image {
    display: block;
    width: 100%;
    height: auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.pain-item {
    background: rgba(255, 255, 255, 0.82);
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--site-shadow);
    border: 1px solid var(--site-line);
}

.pain-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(217, 134, 149, 0.1);
    color: var(--site-accent-deep);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(217, 134, 149, 0.2);
}

.pain-text {
    font-size: 16px;
    color: var(--site-ink);
    font-weight: 600;
    line-height: 1.5;
}

@media (max-width: 759px) {
    .pain-points__image-frame {
        width: min(100% + 12px, 940px);
        margin: -20px -6px 0;
    }
}

.feature-showcase {
    width: min(1120px, calc(100% - 24px));
    margin: 0 auto;
}

.feature-large {
    display: grid;
    gap: 22px;
    margin-top: 24px;
    padding: 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--site-line);
    box-shadow: var(--site-shadow);
}

.feature-inline-image {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
}

.feature-inline-image--spaced {
    margin-bottom: 16px;
}

#section-features.feature-showcase {
    padding-top: 0;
}

.feature-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.feature-keyword {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}

.feature-plan-badge--free {
    color: #117036;
    background: #eafcf1;
    border: 1px solid #bcebc5;
}

.feature-plan-badge--standard {
    color: #1a56db;
    background: #edf5ff;
    border: 1px solid #c3d9ff;
}

.feature-plan-badge--premium {
    color: #a14a5a;
    background: #fff5f7;
    border: 1px solid #f9d5db;
}

.feature-large h3 {
    margin-top: 14px;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.14;
    letter-spacing: -0.05em;
    font-weight: 700;
    color: var(--site-ink);
}

.feature-desc {
    margin-top: 12px;
    color: var(--site-muted);
    font-size: 16px;
    line-height: 1.75;
}

.feature-visual-stack {
    display: grid;
    gap: 14px;
}

.feature-visual__board {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--site-line);
    background: #fff;
    aspect-ratio: 1.65 / 1;
    box-shadow: 0 8px 24px rgba(112, 72, 84, 0.06);
}

.feature-visual__board img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.feature-visual__board-caption {
    margin: -2px 0 2px;
    padding: 0 4px;
    text-align: center;
    color: var(--site-muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.feature-visual.paging {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.feature-visual.paging::-webkit-scrollbar {
    display: none;
}

.feature-visual.paging img {
    width: min(82vw, 290px);
    flex: 0 0 auto;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--site-line);
    scroll-snap-align: start;
}

@media (max-width: 759px) {
    .feature-showcase {
        width: min(100% - 12px, 1120px);
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: min(100%, 420px);
    }

    .pain-item {
        min-height: 132px;
        padding: 18px 16px 18px;
        border-radius: 20px;
    }

    .pain-number {
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
        font-size: 20px;
    }

    .pain-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .feature-large {
        padding: 22px 18px;
    }
}

@media (min-width: 960px) {
    .feature-large {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        align-items: center;
    }
}
