/* ============================================================
   Feature Comparison page: modern refresh consistent with the
   how-to guides, FAQ, Features, Screenshots and home pages.
   Scoped to .comparev2 so it never affects other pages.
   Shares the green card-based palette used in css/guides.css
   ============================================================ */

.comparev2 {
    background: #fff;
    padding: 10px 0 50px;
}

/* Intro lead under the breadcrumb (matches .fsfeatures-lead / .ssv2-lead) */
.comparev2-lead {
    max-width: 1000px;
    margin: 6px auto 22px;
    background: linear-gradient(135deg, #f4faf3, #eef6ec);
    border: 1px solid #e1ebde;
    border-left: 4px solid #3aa635;
    border-radius: 12px;
    padding: 18px 22px;
    color: #3a4734;
    font-size: 16px;
    line-height: 1.6;
}

/* ---- The comparison table sits inside a clean white card ---- */
.comparev2 .compare-card {
    background: #ffffff;
    border: 1px solid #e8ece6;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    padding: 10px 18px 18px;
    overflow: hidden;
}

.comparev2 .compare-card table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    color: #41493b;
}

/* ---- Header row: edition logos + titles ---- */
.comparev2 .compare-card table tr td h4.text-green {
    color: #1f7a1c;
    font-weight: 700;
    margin: 8px 0 0;
}

/* ---- Section header rows: the row whose first cell holds an <h4> ---- */
.comparev2 .compare-card table tr td h4 {
    font-size: 17px;
    font-weight: 700;
    color: #26331e;
    margin: 0;
    padding: 6px 0;
    position: relative;
}

.comparev2 .compare-card table tr td:first-child h4.text-green {
    padding-left: 14px;
}

.comparev2 .compare-card table tr td:first-child h4.text-green:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    border-radius: 3px;
    background: linear-gradient(180deg, #45b53f, #1f7a1c);
}

/* ---- Feature rows: comfortable padding + zebra striping ---- */
.comparev2 .compare-card table td {
    padding: 11px 14px;
    border-bottom: 1px solid #eef1ec;
    vertical-align: middle;
}

/* Remove the legacy <hr /> divider inside the table */
.comparev2 .compare-card table hr {
    display: none;
}

/* Section-header rows get a soft green band and no bottom border bleed */
.comparev2 .compare-card table tr td h4.text-green {
    /* handled above */
}

/* ---- Green tick marks ---- */
.comparev2 .compare-card table i.icon-ok.text-green {
    color: #1f7a1c;
    font-size: 16px;
}

/* Draw a soft green circle behind each tick for a modern badge look */
.comparev2 .compare-card table td > i.icon-ok.text-green {
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    background: rgba(31,122,28,.10);
    color: #1f7a1c;
}

/* ---- Price emphasis ---- */
.comparev2 .compare-card table tr td strong {
    color: #26331e;
    font-size: 16px;
}

/* ---- Edition logo images ---- */
.comparev2 .compare-card table tr td img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.10);
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .comparev2 .compare-card {
        padding: 6px 8px 10px;
    }

    .comparev2 .compare-card table {
        font-size: 13px;
    }

    .comparev2 .compare-card table td {
        padding: 9px 6px;
    }
}
