.feature-hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8efff 100%);
    padding: 6rem 0 4rem;
}
.tariff-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50rem;
    font-size: 0.8rem;
    font-weight: 700;
}
.tariff-free { background-color: #d1e7dd; color: #0f5132; }
.tariff-pro { background-color: #cfe2ff; color: #084298; }
.tariff-agency { background-color: #e2d9f3; color: #432874; }
.feature-detail-card {
    border: 1px solid #f1f1f4;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.06);
}
.feature-detail-card .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.back-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}
.back-link:hover { gap: 0.75rem; }
section {
    padding-top: 9rem !important;
}
