.comparison-panel {
    margin: 42px 0;
    padding: 28px;
    border: 1px solid #e3dbd2;
    border-radius: 22px;
    background: linear-gradient(135deg, #fffaf5, #eef4ef);
}

.home-comparison {
    max-width: 1120px;
    margin: 56px auto 34px;
}

.comparison-panel h2 {
    margin: 6px 0 12px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.comparison-panel p {
    max-width: 760px;
    color: #5d5751;
    line-height: 1.68;
}

.comparison-table {
    width: 100%;
    margin-top: 22px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
}

.comparison-table th {
    background: #233537;
    color: #fff;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    border: 1px solid #ded7ce;
    vertical-align: top;
}

.comparison-table tr:nth-child(even) td {
    background: #f8f2eb;
}

.soft-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin: 38px 0;
    padding: 24px;
    border-radius: 20px;
    background: #233537;
    color: #fff;
}

.soft-cta p {
    margin: 0;
    color: #edf3ef;
    line-height: 1.65;
}

.soft-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    background: #f4d7c2;
    color: #233537;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.editorial-disclosure {
    margin: 22px 0;
    padding: 16px 18px;
    border-left: 4px solid #b04a36;
    background: #fff7ed;
    color: #4f4740;
    font-size: 15px;
    line-height: 1.65;
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 8px;
}

.score-card {
    padding: 16px;
    border: 1px solid #ded7ce;
    border-radius: 16px;
    background: #fff;
}

.score-card strong {
    display: block;
    margin-bottom: 8px;
    color: #233537;
    font-size: .84rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.score-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 32px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #233537;
    color: #fff;
    font-weight: 800;
}

.score-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.intent-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.intent-list a {
    display: block;
    padding: 16px;
    border: 1px solid #ded7ce;
    border-radius: 16px;
    background: #fff;
    color: #233537;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 700px) {
    .home-comparison {
        margin: 34px 16px 24px;
    }

    .comparison-panel {
        padding: 22px;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
        font-size: 14px;
    }

    .soft-cta {
        grid-template-columns: 1fr;
    }

    .soft-cta a {
        width: 100%;
    }

    .score-grid,
    .intent-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .score-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
