/* Changelog: update _internal/SITE_CHANGELOG.md (not this file). */

.hp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.hp-feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.4rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.hp-feature-card h3 {
    color: var(--green-dark);
    font-size: 1.02rem;
    margin-bottom: .45rem;
}

.hp-feature-card p {
    color: var(--muted);
    font-size: .94rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.hp-feature-card .hp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 1.25rem;
    margin-bottom: .85rem;
}

.hp-steps {
    list-style: none;
    margin: 1.1rem 0 0;
    padding: 0;
    display: grid;
    gap: .85rem;
}

.hp-steps li {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.1rem;
}

.hp-steps .hp-step-num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
    display: grid;
    place-items: center;
}

.hp-steps strong {
    display: block;
    color: var(--green-dark);
    margin-bottom: .2rem;
}

.hp-steps span {
    color: var(--body);
    font-size: .94rem;
    line-height: 1.45;
}

.hp-compare {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    min-width: 640px;
}

.hp-compare th,
.hp-compare td {
    padding: .75rem .9rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.hp-compare thead th {
    background: var(--green-soft);
    color: var(--green-dark);
    font-weight: 700;
}

.hp-compare tbody th {
    background: var(--green-tint);
    color: var(--green-dark);
    font-weight: 700;
    white-space: nowrap;
    width: 22%;
}

.hp-compare td { color: var(--body); }

.hp-compare tbody tr:last-child th,
.hp-compare tbody tr:last-child td { border-bottom: none; }

.hp-powered {
    margin-top: 1.5rem;
    font-size: .88rem;
    color: var(--muted);
    text-align: center;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    background: var(--surface);
}

.hp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.hp-pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.hp-pricing-card .hp-pricing-label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: .5rem;
}

.hp-pricing-card h3 {
    color: var(--green-dark);
    margin-bottom: .55rem;
    font-size: 1.15rem;
}

.hp-pricing-card p {
    color: var(--body);
    margin-bottom: 0;
    font-size: .96rem;
    line-height: 1.55;
}

.ee-note {
    margin-top: 1rem;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.5;
}

.ee-note a { font-weight: 600; color: var(--green-dark); }
.ee-note a:hover { color: var(--green); }

@media (max-width: 900px) {
    .hp-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .hp-feature-grid { grid-template-columns: 1fr; }
}
